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

12 rows where meteor_unique_trajectory_identifier = "20260325002103_k2NyJ" sorted by created_at descending

✎ View and edit SQL

This data as json, copyable, CSV (advanced)

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

Link rowid meteor_unique_trajectory_identifier station_code created_at ▲ updated_at
9575819 9575819 20260325002103_k2NyJ UK00CA 2026-03-26T12:00:17.798Z 2026-04-03T12:35:23.230Z
9575818 9575818 20260325002103_k2NyJ UK00B1 2026-03-26T12:00:17.790Z 2026-04-03T12:35:23.230Z
9575817 9575817 20260325002103_k2NyJ UK00AF 2026-03-26T12:00:17.781Z 2026-04-03T12:35:23.230Z
9575816 9575816 20260325002103_k2NyJ UK009X 2026-03-26T12:00:17.768Z 2026-04-03T12:35:23.230Z
9575815 9575815 20260325002103_k2NyJ UK009L 2026-03-26T12:00:17.754Z 2026-04-03T12:35:23.230Z
9575814 9575814 20260325002103_k2NyJ UK007U 2026-03-26T12:00:17.739Z 2026-04-03T12:35:23.230Z
9575813 9575813 20260325002103_k2NyJ UK007H 2026-03-26T12:00:17.730Z 2026-04-03T12:35:23.230Z
9575812 9575812 20260325002103_k2NyJ UK006D 2026-03-26T12:00:17.721Z 2026-04-03T12:35:23.230Z
9575811 9575811 20260325002103_k2NyJ UK005U 2026-03-26T12:00:17.705Z 2026-04-03T12:35:23.230Z
9575810 9575810 20260325002103_k2NyJ UK004C 2026-03-26T12:00:17.692Z 2026-04-03T12:35:23.230Z
9575809 9575809 20260325002103_k2NyJ UK0045 2026-03-26T12:00:17.672Z 2026-04-03T12:35:23.230Z
9575808 9575808 20260325002103_k2NyJ UK0004 2026-03-26T12:00:17.643Z 2026-04-03T12:35:23.230Z

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