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

30 rows where meteor_unique_trajectory_identifier = "20240118013532_qID2Y" 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
3847109 3847109 20240118013532_qID2Y UK009K 2024-01-20T14:02:41.330Z 2024-01-26T14:20:46.308Z
3847110 3847110 20240118013532_qID2Y UK009S 2024-01-20T14:02:41.330Z 2024-01-26T14:20:46.308Z
3847111 3847111 20240118013532_qID2Y UK00AE 2024-01-20T14:02:41.330Z 2024-01-26T14:20:46.308Z
3847112 3847112 20240118013532_qID2Y UK00AT 2024-01-20T14:02:41.330Z 2024-01-26T14:20:46.308Z
3847113 3847113 20240118013532_qID2Y UK00B0 2024-01-20T14:02:41.330Z 2024-01-26T14:20:46.308Z
3847114 3847114 20240118013532_qID2Y UK00B2 2024-01-20T14:02:41.330Z 2024-01-26T14:20:46.308Z
3847115 3847115 20240118013532_qID2Y UK00B6 2024-01-20T14:02:41.330Z 2024-01-26T14:20:46.308Z
3847086 3847086 20240118013532_qID2Y UK000S 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847087 3847087 20240118013532_qID2Y UK001Z 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847088 3847088 20240118013532_qID2Y UK002H 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847089 3847089 20240118013532_qID2Y UK0030 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847090 3847090 20240118013532_qID2Y UK0031 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847091 3847091 20240118013532_qID2Y UK0035 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847092 3847092 20240118013532_qID2Y UK003A 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847093 3847093 20240118013532_qID2Y UK003X 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847094 3847094 20240118013532_qID2Y UK0041 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847095 3847095 20240118013532_qID2Y UK004G 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847096 3847096 20240118013532_qID2Y UK005S 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847097 3847097 20240118013532_qID2Y UK005V 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847098 3847098 20240118013532_qID2Y UK0062 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847099 3847099 20240118013532_qID2Y UK0070 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847100 3847100 20240118013532_qID2Y UK007A 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847101 3847101 20240118013532_qID2Y UK007B 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847102 3847102 20240118013532_qID2Y UK007L 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847103 3847103 20240118013532_qID2Y UK007P 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847104 3847104 20240118013532_qID2Y UK007R 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847105 3847105 20240118013532_qID2Y UK008J 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847106 3847106 20240118013532_qID2Y UK009D 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847107 3847107 20240118013532_qID2Y UK009G 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z
3847108 3847108 20240118013532_qID2Y UK009J 2024-01-20T14:02:41.329Z 2024-01-26T14:20:46.308Z

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