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 = "20230420030419_LVDrm" 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
2398671 2398671 20230420030419_LVDrm BE0005 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398672 2398672 20230420030419_LVDrm BE0008 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398673 2398673 20230420030419_LVDrm BE0009 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398674 2398674 20230420030419_LVDrm BE000A 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398675 2398675 20230420030419_LVDrm BE000B 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398676 2398676 20230420030419_LVDrm NL000M 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398677 2398677 20230420030419_LVDrm UK0004 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398678 2398678 20230420030419_LVDrm UK002C 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398679 2398679 20230420030419_LVDrm UK0034 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398680 2398680 20230420030419_LVDrm UK003A 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398681 2398681 20230420030419_LVDrm UK003W 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398682 2398682 20230420030419_LVDrm UK005G 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398683 2398683 20230420030419_LVDrm UK0063 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398684 2398684 20230420030419_LVDrm UK006B 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398685 2398685 20230420030419_LVDrm UK006D 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398686 2398686 20230420030419_LVDrm UK006U 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398687 2398687 20230420030419_LVDrm UK007B 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398688 2398688 20230420030419_LVDrm UK007W 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z
2398689 2398689 20230420030419_LVDrm UK0086 2024-01-05T23:57:03.507Z 2024-01-05T23:57:03.507Z

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