participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20240913232936_gqCs2" sorted by created_at descending
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 |
---|---|---|---|---|---|
5100520 | 5100520 | 20240913232936_gqCs2 | BE000A | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100521 | 5100521 | 20240913232936_gqCs2 | UK0034 | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100522 | 5100522 | 20240913232936_gqCs2 | UK003W | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100523 | 5100523 | 20240913232936_gqCs2 | UK0041 | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100524 | 5100524 | 20240913232936_gqCs2 | UK004C | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100525 | 5100525 | 20240913232936_gqCs2 | UK005G | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100526 | 5100526 | 20240913232936_gqCs2 | UK006B | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100527 | 5100527 | 20240913232936_gqCs2 | UK006D | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100528 | 5100528 | 20240913232936_gqCs2 | UK008F | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100529 | 5100529 | 20240913232936_gqCs2 | UK008M | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100530 | 5100530 | 20240913232936_gqCs2 | UK008Z | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100531 | 5100531 | 20240913232936_gqCs2 | UK00A4 | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100532 | 5100532 | 20240913232936_gqCs2 | UK00AN | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100533 | 5100533 | 20240913232936_gqCs2 | UK00BH | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100534 | 5100534 | 20240913232936_gqCs2 | UK00BJ | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
5100535 | 5100535 | 20240913232936_gqCs2 | UK00CJ | 2024-09-17T12:04:37.933Z | 2024-09-22T12:17:49.804Z |
Advanced export
JSON shape: default, array, newline-delimited
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);