participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240305190947_C3iG3" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4033429 | 4033429 | 20240305190947_C3iG3 | UK00B2 | 2024-03-07T14:04:31.520Z | 2024-03-14T12:24:56.521Z |
4033430 | 4033430 | 20240305190947_C3iG3 | UK00BA | 2024-03-07T14:04:31.520Z | 2024-03-14T12:24:56.522Z |
4033431 | 4033431 | 20240305190947_C3iG3 | UK00C1 | 2024-03-07T14:04:31.520Z | 2024-03-14T12:24:56.522Z |
4033428 | 4033428 | 20240305190947_C3iG3 | UK009K | 2024-03-07T14:04:31.519Z | 2024-03-14T12:24:56.521Z |
4033427 | 4033427 | 20240305190947_C3iG3 | UK009G | 2024-03-07T14:04:31.518Z | 2024-03-14T12:24:56.521Z |
4033425 | 4033425 | 20240305190947_C3iG3 | UK008K | 2024-03-07T14:04:31.506Z | 2024-03-14T12:24:56.521Z |
4033426 | 4033426 | 20240305190947_C3iG3 | UK008W | 2024-03-07T14:04:31.506Z | 2024-03-14T12:24:56.521Z |
4033424 | 4033424 | 20240305190947_C3iG3 | UK008J | 2024-03-07T14:04:31.491Z | 2024-03-14T12:24:56.521Z |
4033423 | 4033423 | 20240305190947_C3iG3 | UK0067 | 2024-03-07T14:04:31.479Z | 2024-03-14T12:24:56.521Z |
4033422 | 4033422 | 20240305190947_C3iG3 | UK0049 | 2024-03-07T14:04:31.470Z | 2024-03-14T12:24:56.521Z |
4033421 | 4033421 | 20240305190947_C3iG3 | UK003L | 2024-03-07T14:04:31.457Z | 2024-03-14T12:24:56.521Z |
4033420 | 4033420 | 20240305190947_C3iG3 | UK003F | 2024-03-07T14:04:31.446Z | 2024-03-14T12:24:56.521Z |
4033419 | 4033419 | 20240305190947_C3iG3 | UK001Z | 2024-03-07T14:04:31.432Z | 2024-03-14T12:24:56.521Z |
4033418 | 4033418 | 20240305190947_C3iG3 | UK000S | 2024-03-07T14:04:31.417Z | 2024-03-14T12:24:56.521Z |
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);