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

24 rows where meteor_unique_trajectory_identifier = "20240304015553_UI0CT" 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
4025086 4025086 20240304015553_UI0CT UK0075 2024-03-05T14:06:31.014Z 2024-03-12T12:15:25.236Z
4025087 4025087 20240304015553_UI0CT UK007N 2024-03-05T14:06:31.014Z 2024-03-12T12:15:25.236Z
4025088 4025088 20240304015553_UI0CT UK007R 2024-03-05T14:06:31.014Z 2024-03-12T12:15:25.236Z
4025089 4025089 20240304015553_UI0CT UK007Y 2024-03-05T14:06:31.014Z 2024-03-12T12:15:25.236Z
4025090 4025090 20240304015553_UI0CT UK0087 2024-03-05T14:06:31.014Z 2024-03-12T12:15:25.236Z
4025091 4025091 20240304015553_UI0CT UK0099 2024-03-05T14:06:31.014Z 2024-03-12T12:15:25.236Z
4025092 4025092 20240304015553_UI0CT UK009M 2024-03-05T14:06:31.014Z 2024-03-12T12:15:25.236Z
4025093 4025093 20240304015553_UI0CT UK00AE 2024-03-05T14:06:31.014Z 2024-03-12T12:15:25.236Z
4025094 4025094 20240304015553_UI0CT UK00AL 2024-03-05T14:06:31.014Z 2024-03-12T12:15:25.236Z
4025095 4025095 20240304015553_UI0CT UK00C2 2024-03-05T14:06:31.014Z 2024-03-12T12:15:25.236Z
4025073 4025073 20240304015553_UI0CT UK001Z 2024-03-05T14:06:31.013Z 2024-03-12T12:15:25.236Z
4025074 4025074 20240304015553_UI0CT UK002F 2024-03-05T14:06:31.013Z 2024-03-12T12:15:25.236Z
4025075 4025075 20240304015553_UI0CT UK002X 2024-03-05T14:06:31.013Z 2024-03-12T12:15:25.236Z
4025076 4025076 20240304015553_UI0CT UK0030 2024-03-05T14:06:31.013Z 2024-03-12T12:15:25.236Z
4025077 4025077 20240304015553_UI0CT UK0031 2024-03-05T14:06:31.013Z 2024-03-12T12:15:25.236Z
4025078 4025078 20240304015553_UI0CT UK003B 2024-03-05T14:06:31.013Z 2024-03-12T12:15:25.236Z
4025079 4025079 20240304015553_UI0CT UK003T 2024-03-05T14:06:31.013Z 2024-03-12T12:15:25.236Z
4025080 4025080 20240304015553_UI0CT UK003X 2024-03-05T14:06:31.013Z 2024-03-12T12:15:25.236Z
4025081 4025081 20240304015553_UI0CT UK004D 2024-03-05T14:06:31.013Z 2024-03-12T12:15:25.236Z
4025082 4025082 20240304015553_UI0CT UK004V 2024-03-05T14:06:31.013Z 2024-03-12T12:15:25.236Z
4025083 4025083 20240304015553_UI0CT UK005M 2024-03-05T14:06:31.013Z 2024-03-12T12:15:25.236Z
4025084 4025084 20240304015553_UI0CT UK006P 2024-03-05T14:06:31.013Z 2024-03-12T12:15:25.236Z
4025085 4025085 20240304015553_UI0CT UK006Z 2024-03-05T14:06:31.013Z 2024-03-12T12:15:25.236Z
4025072 4025072 20240304015553_UI0CT UK000J 2024-03-05T14:06:30.944Z 2024-03-12T12:15:25.236Z

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