participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240115224353_OvASg" 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 |
---|---|---|---|---|---|
3838209 | 3838209 | 20240115224353_OvASg | UK001L | 2024-01-18T14:15:10.077Z | 2024-01-24T14:19:18.138Z |
3838210 | 3838210 | 20240115224353_OvASg | UK0027 | 2024-01-18T14:15:10.077Z | 2024-01-24T14:19:18.138Z |
3838211 | 3838211 | 20240115224353_OvASg | UK002S | 2024-01-18T14:15:10.077Z | 2024-01-24T14:19:18.138Z |
3838212 | 3838212 | 20240115224353_OvASg | UK0030 | 2024-01-18T14:15:10.077Z | 2024-01-24T14:19:18.138Z |
3838213 | 3838213 | 20240115224353_OvASg | UK0031 | 2024-01-18T14:15:10.077Z | 2024-01-24T14:19:18.138Z |
3838214 | 3838214 | 20240115224353_OvASg | UK003F | 2024-01-18T14:15:10.077Z | 2024-01-24T14:19:18.138Z |
3838215 | 3838215 | 20240115224353_OvASg | UK003X | 2024-01-18T14:15:10.077Z | 2024-01-24T14:19:18.138Z |
3838216 | 3838216 | 20240115224353_OvASg | UK0050 | 2024-01-18T14:15:10.077Z | 2024-01-24T14:19:18.138Z |
3838217 | 3838217 | 20240115224353_OvASg | UK007A | 2024-01-18T14:15:10.077Z | 2024-01-24T14:19:18.138Z |
3838218 | 3838218 | 20240115224353_OvASg | UK007P | 2024-01-18T14:15:10.077Z | 2024-01-24T14:19:18.138Z |
3838219 | 3838219 | 20240115224353_OvASg | UK00AE | 2024-01-18T14:15:10.077Z | 2024-01-24T14:19:18.138Z |
3838220 | 3838220 | 20240115224353_OvASg | UK00B0 | 2024-01-18T14:15:10.077Z | 2024-01-24T14:19:18.138Z |
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);