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

13 rows where meteor_unique_trajectory_identifier = "20260307120240_W9hAO" sorted by created_at descending

✎ View and edit SQL

This data as json, copyable, CSV (advanced)

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

Link rowid meteor_unique_trajectory_identifier station_code created_at ▲ updated_at
9438961 9438961 20260307120240_W9hAO KR002P 2026-03-08T12:09:06.312Z 2026-03-15T12:41:37.224Z
9438962 9438962 20260307120240_W9hAO KR003T 2026-03-08T12:09:06.312Z 2026-03-15T12:41:37.224Z
9438957 9438957 20260307120240_W9hAO KR0027 2026-03-08T12:09:06.305Z 2026-03-15T12:41:37.224Z
9438958 9438958 20260307120240_W9hAO KR0028 2026-03-08T12:09:06.305Z 2026-03-15T12:41:37.224Z
9438959 9438959 20260307120240_W9hAO KR002G 2026-03-08T12:09:06.305Z 2026-03-15T12:41:37.224Z
9438960 9438960 20260307120240_W9hAO KR002H 2026-03-08T12:09:06.305Z 2026-03-15T12:41:37.224Z
9438956 9438956 20260307120240_W9hAO KR0026 2026-03-08T12:09:06.304Z 2026-03-15T12:41:37.224Z
9438955 9438955 20260307120240_W9hAO KR0025 2026-03-08T12:09:06.292Z 2026-03-15T12:41:37.224Z
9438954 9438954 20260307120240_W9hAO KR0021 2026-03-08T12:09:06.279Z 2026-03-15T12:41:37.224Z
9438950 9438950 20260307120240_W9hAO KR0004 2026-03-08T12:09:06.264Z 2026-03-15T12:41:37.224Z
9438951 9438951 20260307120240_W9hAO KR000L 2026-03-08T12:09:06.264Z 2026-03-15T12:41:37.224Z
9438952 9438952 20260307120240_W9hAO KR0016 2026-03-08T12:09:06.264Z 2026-03-15T12:41:37.224Z
9438953 9438953 20260307120240_W9hAO KR001Y 2026-03-08T12:09:06.264Z 2026-03-15T12:41:37.224Z

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