home / gmn_data_store / participating_station

Menu
  • Dashboards

participating_station

Each row represents a station recording a meteor sighting.

Data license: CC BY 4.0 license · Data source: Global Meteor Network

16 rows where meteor_unique_trajectory_identifier = "20251213234249_kc1rm" sorted by created_at descending

✎ View and edit SQL

This data as json, copyable, CSV (advanced)

Suggested facets: updated_at, created_at (date), updated_at (date)

Link rowid meteor_unique_trajectory_identifier station_code created_at ▲ updated_at
8857065 8857065 20251213234249_kc1rm BE0014 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.528Z
8857066 8857066 20251213234249_kc1rm FR000Z 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.528Z
8857067 8857067 20251213234249_kc1rm NL000M 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.528Z
8857068 8857068 20251213234249_kc1rm UK002Q 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.529Z
8857069 8857069 20251213234249_kc1rm UK0034 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.529Z
8857070 8857070 20251213234249_kc1rm UK003W 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.529Z
8857071 8857071 20251213234249_kc1rm UK0045 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.529Z
8857072 8857072 20251213234249_kc1rm UK004J 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.529Z
8857073 8857073 20251213234249_kc1rm UK004J_2 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.529Z
8857074 8857074 20251213234249_kc1rm UK006D 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.529Z
8857075 8857075 20251213234249_kc1rm UK006U 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.529Z
8857076 8857076 20251213234249_kc1rm UK009L 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.529Z
8857077 8857077 20251213234249_kc1rm UK00A4 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.529Z
8857078 8857078 20251213234249_kc1rm UK00CJ 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.529Z
8857079 8857079 20251213234249_kc1rm UK00D6 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.529Z
8857080 8857080 20251213234249_kc1rm UK00D6_2 2025-12-20T14:13:14.995Z 2025-12-23T14:26:17.529Z

Advanced export

JSON shape: default, array, newline-delimited

CSV options:

CREATE TABLE participating_station
(
    meteor_unique_trajectory_identifier text     NOT NULL,
    station_code                        text     NOT NULL,
    created_at                          datetime NOT NULL DEFAULT (
        strftime(
                '%Y-%m-%dT%H:%M:%fZ', 'now', 'utc'
            )
        ),
    updated_at                          datetime NOT NULL DEFAULT (
        strftime(
                '%Y-%m-%dT%H:%M:%fZ', 'now', 'utc'
            )
        ),
    FOREIGN KEY (meteor_unique_trajectory_identifier) REFERENCES meteor (unique_trajectory_identifier),
    FOREIGN KEY (station_code) REFERENCES station (code),
    UNIQUE (meteor_unique_trajectory_identifier, station_code) ON CONFLICT IGNORE
);
CREATE INDEX participating_station_station_code_covering_index ON participating_station (station_code, meteor_unique_trajectory_identifier);
CREATE INDEX participating_station_created_at_index ON participating_station (created_at);
CREATE INDEX participating_station_updated_at_index ON participating_station (updated_at);
Powered by Datasette · Queries took 1.2ms · Data license: CC BY 4.0 license · Data source: Global Meteor Network