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 = "20240303030857_Qz7Au" 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
4020805 4020805 20240303030857_Qz7Au UK0099 2024-03-04T14:06:25.242Z 2024-03-11T12:18:38.856Z
4020806 4020806 20240303030857_Qz7Au UK00AE 2024-03-04T14:06:25.242Z 2024-03-11T12:18:38.856Z
4020807 4020807 20240303030857_Qz7Au UK00AL 2024-03-04T14:06:25.242Z 2024-03-11T12:18:38.856Z
4020808 4020808 20240303030857_Qz7Au UK00AM 2024-03-04T14:06:25.242Z 2024-03-11T12:18:38.856Z
4020798 4020798 20240303030857_Qz7Au UK005H 2024-03-04T14:06:25.232Z 2024-03-11T12:18:38.856Z
4020799 4020799 20240303030857_Qz7Au UK006A 2024-03-04T14:06:25.232Z 2024-03-11T12:18:38.856Z
4020800 4020800 20240303030857_Qz7Au UK006T 2024-03-04T14:06:25.232Z 2024-03-11T12:18:38.856Z
4020801 4020801 20240303030857_Qz7Au UK0075 2024-03-04T14:06:25.232Z 2024-03-11T12:18:38.856Z
4020802 4020802 20240303030857_Qz7Au UK007N 2024-03-04T14:06:25.232Z 2024-03-11T12:18:38.856Z
4020803 4020803 20240303030857_Qz7Au UK0087 2024-03-04T14:06:25.232Z 2024-03-11T12:18:38.856Z
4020804 4020804 20240303030857_Qz7Au UK008G 2024-03-04T14:06:25.232Z 2024-03-11T12:18:38.856Z
4020793 4020793 20240303030857_Qz7Au UK0030 2024-03-04T14:06:25.210Z 2024-03-11T12:18:38.856Z
4020794 4020794 20240303030857_Qz7Au UK0031 2024-03-04T14:06:25.210Z 2024-03-11T12:18:38.856Z
4020795 4020795 20240303030857_Qz7Au UK003B 2024-03-04T14:06:25.210Z 2024-03-11T12:18:38.856Z
4020796 4020796 20240303030857_Qz7Au UK003X 2024-03-04T14:06:25.210Z 2024-03-11T12:18:38.856Z
4020797 4020797 20240303030857_Qz7Au UK004V 2024-03-04T14:06:25.210Z 2024-03-11T12:18:38.856Z

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