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

19 rows where meteor_unique_trajectory_identifier = "20240421231009_RR3Q6" 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
4230707 4230707 20240421231009_RR3Q6 UK000S 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230708 4230708 20240421231009_RR3Q6 UK001L 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230709 4230709 20240421231009_RR3Q6 UK001Z 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230710 4230710 20240421231009_RR3Q6 UK0027 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230711 4230711 20240421231009_RR3Q6 UK0031 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230712 4230712 20240421231009_RR3Q6 UK0050 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230713 4230713 20240421231009_RR3Q6 UK005L 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230714 4230714 20240421231009_RR3Q6 UK007A 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230715 4230715 20240421231009_RR3Q6 UK007L 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230716 4230716 20240421231009_RR3Q6 UK007P 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230717 4230717 20240421231009_RR3Q6 UK008B 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230718 4230718 20240421231009_RR3Q6 UK008J 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230719 4230719 20240421231009_RR3Q6 UK009D 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230720 4230720 20240421231009_RR3Q6 UK009G 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230721 4230721 20240421231009_RR3Q6 UK009S 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230722 4230722 20240421231009_RR3Q6 UK00AE 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230723 4230723 20240421231009_RR3Q6 UK00B0 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230724 4230724 20240421231009_RR3Q6 UK00BA 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z
4230725 4230725 20240421231009_RR3Q6 UK00BD 2024-04-23T12:09:40.109Z 2024-04-29T12:18:56.609Z

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