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

26 rows where meteor_unique_trajectory_identifier = "20240316050019_roPke" 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
4078400 4078400 20240316050019_roPke UK000S 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078401 4078401 20240316050019_roPke UK000Y 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078402 4078402 20240316050019_roPke UK001Z 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078403 4078403 20240316050019_roPke UK0026 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078404 4078404 20240316050019_roPke UK002H 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078405 4078405 20240316050019_roPke UK0030 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078406 4078406 20240316050019_roPke UK0031 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078407 4078407 20240316050019_roPke UK003Z 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078408 4078408 20240316050019_roPke UK005V 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078409 4078409 20240316050019_roPke UK0070 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078410 4078410 20240316050019_roPke UK007L 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078411 4078411 20240316050019_roPke UK007P 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078412 4078412 20240316050019_roPke UK007R 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078413 4078413 20240316050019_roPke UK008J 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078414 4078414 20240316050019_roPke UK008K 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078415 4078415 20240316050019_roPke UK0098 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078416 4078416 20240316050019_roPke UK009G 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078417 4078417 20240316050019_roPke UK009J 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078418 4078418 20240316050019_roPke UK009K 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078419 4078419 20240316050019_roPke UK009T 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078420 4078420 20240316050019_roPke UK00A5 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078421 4078421 20240316050019_roPke UK00AT 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078422 4078422 20240316050019_roPke UK00B0 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078423 4078423 20240316050019_roPke UK00B2 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078424 4078424 20240316050019_roPke UK00B6 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z
4078425 4078425 20240316050019_roPke UK00BF 2024-03-17T12:09:31.250Z 2024-03-24T12:20:57.490Z

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