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

23 rows where meteor_unique_trajectory_identifier = "20221008043626_VpRql" sorted by created_at descending

✎ View and edit SQL

This data as json, copyable, CSV (advanced)

Suggested facets: created_at (date), updated_at (date)

Link rowid meteor_unique_trajectory_identifier station_code created_at ▲ updated_at
1753343 1753343 20221008043626_VpRql UK001P 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753344 1753344 20221008043626_VpRql UK0026 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753345 1753345 20221008043626_VpRql UK002C 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753346 1753346 20221008043626_VpRql UK002G 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753347 1753347 20221008043626_VpRql UK002W 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753348 1753348 20221008043626_VpRql UK0034 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753349 1753349 20221008043626_VpRql UK0035 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753350 1753350 20221008043626_VpRql UK0038 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753351 1753351 20221008043626_VpRql UK003C 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753352 1753352 20221008043626_VpRql UK003D 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753353 1753353 20221008043626_VpRql UK0041 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753354 1753354 20221008043626_VpRql UK0049 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753355 1753355 20221008043626_VpRql UK004X 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753356 1753356 20221008043626_VpRql UK005N 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753357 1753357 20221008043626_VpRql UK005U 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753358 1753358 20221008043626_VpRql UK005V 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753359 1753359 20221008043626_VpRql UK0062 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753360 1753360 20221008043626_VpRql UK006B 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753361 1753361 20221008043626_VpRql UK006D 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753362 1753362 20221008043626_VpRql UK007B 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753363 1753363 20221008043626_VpRql UK007E 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753364 1753364 20221008043626_VpRql UK007H 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z
1753365 1753365 20221008043626_VpRql UK007V 2024-01-05T23:50:53.267Z 2024-01-05T23:50:53.267Z

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