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 = "20260315000234_N94hw" 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
9484186 9484186 20260315000234_N94hw UK00AU 2026-03-16T12:01:52.017Z 2026-03-23T12:21:45.746Z
9484187 9484187 20260315000234_N94hw UK00DH 2026-03-16T12:01:52.017Z 2026-03-23T12:21:45.746Z
9484175 9484175 20260315000234_N94hw UK0009 2026-03-16T12:01:51.998Z 2026-03-23T12:21:45.746Z
9484176 9484176 20260315000234_N94hw UK001K 2026-03-16T12:01:51.998Z 2026-03-23T12:21:45.746Z
9484177 9484177 20260315000234_N94hw UK0024 2026-03-16T12:01:51.998Z 2026-03-23T12:21:45.746Z
9484178 9484178 20260315000234_N94hw UK0051 2026-03-16T12:01:51.998Z 2026-03-23T12:21:45.746Z
9484179 9484179 20260315000234_N94hw UK007Q 2026-03-16T12:01:51.998Z 2026-03-23T12:21:45.746Z
9484180 9484180 20260315000234_N94hw UK008B 2026-03-16T12:01:51.998Z 2026-03-23T12:21:45.746Z
9484181 9484181 20260315000234_N94hw UK008X 2026-03-16T12:01:51.998Z 2026-03-23T12:21:45.746Z
9484182 9484182 20260315000234_N94hw UK009D 2026-03-16T12:01:51.998Z 2026-03-23T12:21:45.746Z
9484183 9484183 20260315000234_N94hw UK009K 2026-03-16T12:01:51.998Z 2026-03-23T12:21:45.746Z
9484184 9484184 20260315000234_N94hw UK009W 2026-03-16T12:01:51.998Z 2026-03-23T12:21:45.746Z
9484185 9484185 20260315000234_N94hw UK00AP 2026-03-16T12:01:51.998Z 2026-03-23T12:21:45.746Z

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