participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240913013030_VT9oc" sorted by created_at descending
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 |
---|---|---|---|---|---|
5103418 | 5103418 | 20240913013030_VT9oc | UK002F | 2024-09-17T12:10:57.192Z | 2024-09-21T12:16:24.863Z |
5103419 | 5103419 | 20240913013030_VT9oc | UK0041 | 2024-09-17T12:10:57.192Z | 2024-09-21T12:16:24.863Z |
5103420 | 5103420 | 20240913013030_VT9oc | UK006B | 2024-09-17T12:10:57.192Z | 2024-09-21T12:16:24.863Z |
5103421 | 5103421 | 20240913013030_VT9oc | UK006D | 2024-09-17T12:10:57.192Z | 2024-09-21T12:16:24.863Z |
5103422 | 5103422 | 20240913013030_VT9oc | UK007R | 2024-09-17T12:10:57.192Z | 2024-09-21T12:16:24.863Z |
5103423 | 5103423 | 20240913013030_VT9oc | UK008F | 2024-09-17T12:10:57.192Z | 2024-09-21T12:16:24.864Z |
5103424 | 5103424 | 20240913013030_VT9oc | UK0099 | 2024-09-17T12:10:57.192Z | 2024-09-21T12:16:24.864Z |
5103425 | 5103425 | 20240913013030_VT9oc | UK009J | 2024-09-17T12:10:57.192Z | 2024-09-21T12:16:24.864Z |
5103426 | 5103426 | 20240913013030_VT9oc | UK009L | 2024-09-17T12:10:57.192Z | 2024-09-21T12:16:24.864Z |
5103427 | 5103427 | 20240913013030_VT9oc | UK00A4 | 2024-09-17T12:10:57.192Z | 2024-09-21T12:16:24.864Z |
5103428 | 5103428 | 20240913013030_VT9oc | UK00AN | 2024-09-17T12:10:57.192Z | 2024-09-21T12:16:24.864Z |
5103429 | 5103429 | 20240913013030_VT9oc | UK00B1 | 2024-09-17T12:10:57.192Z | 2024-09-21T12:16:24.864Z |
5103430 | 5103430 | 20240913013030_VT9oc | UK00BH | 2024-09-17T12:10:57.192Z | 2024-09-21T12:16:24.864Z |
5103431 | 5103431 | 20240913013030_VT9oc | UK00BJ | 2024-09-17T12:10:57.192Z | 2024-09-21T12:16:24.864Z |
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);