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 = "20260316151554_2RtME" 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
9498588 9498588 20260316151554_2RtME NZ0017 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498589 9498589 20260316151554_2RtME NZ001P 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498590 9498590 20260316151554_2RtME NZ001S 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498591 9498591 20260316151554_2RtME NZ002H 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498592 9498592 20260316151554_2RtME NZ002R 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498593 9498593 20260316151554_2RtME NZ002X 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498594 9498594 20260316151554_2RtME NZ0033 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498595 9498595 20260316151554_2RtME NZ003H 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498596 9498596 20260316151554_2RtME NZ003R 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498597 9498597 20260316151554_2RtME NZ003Y 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498598 9498598 20260316151554_2RtME NZ004A 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498599 9498599 20260316151554_2RtME NZ005D 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498600 9498600 20260316151554_2RtME NZ005E 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498601 9498601 20260316151554_2RtME NZ005Q 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498602 9498602 20260316151554_2RtME NZ005U 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z
9498603 9498603 20260316151554_2RtME NZ005Z 2026-03-17T12:14:10.217Z 2026-03-24T12:41:26.549Z

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