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

15 rows where meteor_unique_trajectory_identifier = "20260322025837_EmDXY" 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
9554315 9554315 20260322025837_EmDXY UK001L 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z
9554316 9554316 20260322025837_EmDXY UK0030 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z
9554317 9554317 20260322025837_EmDXY UK003U 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z
9554318 9554318 20260322025837_EmDXY UK0042 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z
9554319 9554319 20260322025837_EmDXY UK0067 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z
9554320 9554320 20260322025837_EmDXY UK008J 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z
9554321 9554321 20260322025837_EmDXY UK009K 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z
9554322 9554322 20260322025837_EmDXY UK009P 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z
9554323 9554323 20260322025837_EmDXY UK00AJ 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z
9554324 9554324 20260322025837_EmDXY UK00B0 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z
9554325 9554325 20260322025837_EmDXY UK00BA 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z
9554326 9554326 20260322025837_EmDXY UK00BK 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z
9554327 9554327 20260322025837_EmDXY UK00C1 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z
9554328 9554328 20260322025837_EmDXY UK00CQ 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z
9554329 9554329 20260322025837_EmDXY UK00DA 2026-03-23T12:02:26.634Z 2026-03-30T12:28:02.422Z

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