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 = "20240303193718_CyF2t" 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
4022605 4022605 20240303193718_CyF2t UK0099 2024-03-05T14:02:36.959Z 2024-03-12T12:15:13.880Z
4022606 4022606 20240303193718_CyF2t UK009D 2024-03-05T14:02:36.959Z 2024-03-12T12:15:13.880Z
4022607 4022607 20240303193718_CyF2t UK00AL 2024-03-05T14:02:36.959Z 2024-03-12T12:15:13.880Z
4022608 4022608 20240303193718_CyF2t UK00C2 2024-03-05T14:02:36.959Z 2024-03-12T12:15:13.880Z
4022604 4022604 20240303193718_CyF2t UK0087 2024-03-05T14:02:36.958Z 2024-03-12T12:15:13.880Z
4022602 4022602 20240303193718_CyF2t UK007N 2024-03-05T14:02:36.944Z 2024-03-12T12:15:13.880Z
4022603 4022603 20240303193718_CyF2t UK007P 2024-03-05T14:02:36.944Z 2024-03-12T12:15:13.880Z
4022600 4022600 20240303193718_CyF2t UK006Z 2024-03-05T14:02:36.938Z 2024-03-12T12:15:13.880Z
4022601 4022601 20240303193718_CyF2t UK0075 2024-03-05T14:02:36.938Z 2024-03-12T12:15:13.880Z
4022599 4022599 20240303193718_CyF2t UK003X 2024-03-05T14:02:36.936Z 2024-03-12T12:15:13.880Z
4022598 4022598 20240303193718_CyF2t UK003T 2024-03-05T14:02:36.929Z 2024-03-12T12:15:13.880Z
4022595 4022595 20240303193718_CyF2t UK001T 2024-03-05T14:02:36.922Z 2024-03-12T12:15:13.880Z
4022596 4022596 20240303193718_CyF2t UK002F 2024-03-05T14:02:36.922Z 2024-03-12T12:15:13.880Z
4022597 4022597 20240303193718_CyF2t UK003B 2024-03-05T14:02:36.922Z 2024-03-12T12:15:13.880Z
4022593 4022593 20240303193718_CyF2t UK000Z 2024-03-05T14:02:36.910Z 2024-03-12T12:15:13.880Z
4022594 4022594 20240303193718_CyF2t UK001L 2024-03-05T14:02:36.910Z 2024-03-12T12:15:13.880Z

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