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 = "20221008030159_sNMZ0" 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
1752185 1752185 20221008030159_sNMZ0 UK005R 2024-01-05T23:50:53.176Z 2024-01-05T23:50:53.176Z
1752186 1752186 20221008030159_sNMZ0 UK006A 2024-01-05T23:50:53.176Z 2024-01-05T23:50:53.176Z
1752187 1752187 20221008030159_sNMZ0 UK006Q 2024-01-05T23:50:53.176Z 2024-01-05T23:50:53.176Z
1752188 1752188 20221008030159_sNMZ0 UK006T 2024-01-05T23:50:53.176Z 2024-01-05T23:50:53.176Z
1752189 1752189 20221008030159_sNMZ0 UK006Y 2024-01-05T23:50:53.176Z 2024-01-05T23:50:53.176Z
1752190 1752190 20221008030159_sNMZ0 UK0072 2024-01-05T23:50:53.176Z 2024-01-05T23:50:53.176Z
1752191 1752191 20221008030159_sNMZ0 UK0074 2024-01-05T23:50:53.176Z 2024-01-05T23:50:53.176Z
1752176 1752176 20221008030159_sNMZ0 UK001N 2024-01-05T23:50:53.175Z 2024-01-05T23:50:53.175Z
1752177 1752177 20221008030159_sNMZ0 UK003B 2024-01-05T23:50:53.175Z 2024-01-05T23:50:53.175Z
1752178 1752178 20221008030159_sNMZ0 UK003F 2024-01-05T23:50:53.175Z 2024-01-05T23:50:53.175Z
1752179 1752179 20221008030159_sNMZ0 UK003G 2024-01-05T23:50:53.175Z 2024-01-05T23:50:53.175Z
1752180 1752180 20221008030159_sNMZ0 UK003X 2024-01-05T23:50:53.175Z 2024-01-05T23:50:53.175Z
1752181 1752181 20221008030159_sNMZ0 UK003Y 2024-01-05T23:50:53.175Z 2024-01-05T23:50:53.175Z
1752182 1752182 20221008030159_sNMZ0 UK0050 2024-01-05T23:50:53.175Z 2024-01-05T23:50:53.175Z
1752183 1752183 20221008030159_sNMZ0 UK0052 2024-01-05T23:50:53.175Z 2024-01-05T23:50:53.175Z
1752184 1752184 20221008030159_sNMZ0 UK005K 2024-01-05T23:50:53.175Z 2024-01-05T23:50:53.175Z

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