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

15 rows where meteor_unique_trajectory_identifier = "20240130230644_Vu84U" 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
3901222 3901222 20240130230644_Vu84U UK000Y 2024-02-01T14:02:48.843Z 2024-02-08T14:20:09.531Z
3901223 3901223 20240130230644_Vu84U UK001U 2024-02-01T14:02:48.843Z 2024-02-08T14:20:09.531Z
3901224 3901224 20240130230644_Vu84U UK002H 2024-02-01T14:02:48.843Z 2024-02-08T14:20:09.531Z
3901225 3901225 20240130230644_Vu84U UK0030 2024-02-01T14:02:48.843Z 2024-02-08T14:20:09.531Z
3901226 3901226 20240130230644_Vu84U UK0032 2024-02-01T14:02:48.843Z 2024-02-08T14:20:09.531Z
3901227 3901227 20240130230644_Vu84U UK003U 2024-02-01T14:02:48.843Z 2024-02-08T14:20:09.531Z
3901228 3901228 20240130230644_Vu84U UK0042 2024-02-01T14:02:48.843Z 2024-02-08T14:20:09.531Z
3901229 3901229 20240130230644_Vu84U UK0050 2024-02-01T14:02:48.843Z 2024-02-08T14:20:09.531Z
3901230 3901230 20240130230644_Vu84U UK0067 2024-02-01T14:02:48.843Z 2024-02-08T14:20:09.531Z
3901231 3901231 20240130230644_Vu84U UK0072 2024-02-01T14:02:48.843Z 2024-02-08T14:20:09.531Z
3901232 3901232 20240130230644_Vu84U UK007M 2024-02-01T14:02:48.843Z 2024-02-08T14:20:09.531Z
3901233 3901233 20240130230644_Vu84U UK0083 2024-02-01T14:02:48.843Z 2024-02-08T14:20:09.531Z
3901234 3901234 20240130230644_Vu84U UK009P 2024-02-01T14:02:48.843Z 2024-02-08T14:20:09.531Z
3901235 3901235 20240130230644_Vu84U UK009S 2024-02-01T14:02:48.843Z 2024-02-08T14:20:09.531Z
3901221 3901221 20240130230644_Vu84U IE0004 2024-02-01T14:02:48.825Z 2024-02-08T14:20:09.531Z

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