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

14 rows where meteor_unique_trajectory_identifier = "20260317233012_DAjAO" sorted by created_at descending

✎ View and edit SQL

This data as json, copyable, CSV (advanced)

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

Link rowid meteor_unique_trajectory_identifier station_code created_at ▲ updated_at
9507655 9507655 20260317233012_DAjAO UK00B0 2026-03-19T12:00:51.752Z 2026-03-26T12:36:51.462Z
9507654 9507654 20260317233012_DAjAO UK00AS 2026-03-19T12:00:51.715Z 2026-03-26T12:36:51.462Z
9507652 9507652 20260317233012_DAjAO UK008G 2026-03-19T12:00:51.714Z 2026-03-26T12:36:51.462Z
9507653 9507653 20260317233012_DAjAO UK00AM 2026-03-19T12:00:51.714Z 2026-03-26T12:36:51.462Z
9507650 9507650 20260317233012_DAjAO UK007Y 2026-03-19T12:00:51.705Z 2026-03-26T12:36:51.462Z
9507651 9507651 20260317233012_DAjAO UK0087 2026-03-19T12:00:51.705Z 2026-03-26T12:36:51.462Z
9507649 9507649 20260317233012_DAjAO UK006T 2026-03-19T12:00:51.691Z 2026-03-26T12:36:51.462Z
9507647 9507647 20260317233012_DAjAO UK006C 2026-03-19T12:00:51.677Z 2026-03-26T12:36:51.461Z
9507648 9507648 20260317233012_DAjAO UK006J 2026-03-19T12:00:51.677Z 2026-03-26T12:36:51.462Z
9507646 9507646 20260317233012_DAjAO UK004D 2026-03-19T12:00:51.665Z 2026-03-26T12:36:51.461Z
9507645 9507645 20260317233012_DAjAO UK003T 2026-03-19T12:00:51.652Z 2026-03-26T12:36:51.461Z
9507643 9507643 20260317233012_DAjAO UK002Z 2026-03-19T12:00:51.640Z 2026-03-26T12:36:51.461Z
9507644 9507644 20260317233012_DAjAO UK003B 2026-03-19T12:00:51.640Z 2026-03-26T12:36:51.461Z
9507642 9507642 20260317233012_DAjAO UK001H 2026-03-19T12:00:51.623Z 2026-03-26T12:36:51.461Z

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