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

22 rows where meteor_unique_trajectory_identifier = "20240119061457_6r69W" sorted by created_at descending

✎ View and edit SQL

This data as json, copyable, CSV (advanced)

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

Link rowid meteor_unique_trajectory_identifier station_code created_at ▲ updated_at
3867531 3867531 20240119061457_6r69W UK0006 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.138Z
3867532 3867532 20240119061457_6r69W UK0009 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.138Z
3867533 3867533 20240119061457_6r69W UK001S 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.138Z
3867534 3867534 20240119061457_6r69W UK002G 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.138Z
3867535 3867535 20240119061457_6r69W UK003M 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.138Z
3867536 3867536 20240119061457_6r69W UK003Z 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.138Z
3867537 3867537 20240119061457_6r69W UK0049 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.138Z
3867538 3867538 20240119061457_6r69W UK005S 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.138Z
3867539 3867539 20240119061457_6r69W UK0060 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.138Z
3867540 3867540 20240119061457_6r69W UK0067 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.138Z
3867541 3867541 20240119061457_6r69W UK007A 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.138Z
3867542 3867542 20240119061457_6r69W UK008B 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.139Z
3867543 3867543 20240119061457_6r69W UK008K 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.139Z
3867544 3867544 20240119061457_6r69W UK008W 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.139Z
3867545 3867545 20240119061457_6r69W UK008X 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.139Z
3867546 3867546 20240119061457_6r69W UK009G 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.139Z
3867547 3867547 20240119061457_6r69W UK009K 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.139Z
3867548 3867548 20240119061457_6r69W UK009S 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.139Z
3867549 3867549 20240119061457_6r69W UK009W 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.139Z
3867550 3867550 20240119061457_6r69W UK00A5 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.139Z
3867551 3867551 20240119061457_6r69W UK00AP 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.139Z
3867552 3867552 20240119061457_6r69W UK00BK 2024-01-22T14:07:37.954Z 2024-01-27T14:20:24.139Z

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