participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20241122052054_EcVyA" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
5574190 | 5574190 | 20241122052054_EcVyA | UK008J | 2024-11-23T14:02:43.188Z | 2024-11-25T14:17:56.338Z |
5574191 | 5574191 | 20241122052054_EcVyA | UK009D | 2024-11-23T14:02:43.188Z | 2024-11-25T14:17:56.338Z |
5574192 | 5574192 | 20241122052054_EcVyA | UK009G | 2024-11-23T14:02:43.188Z | 2024-11-25T14:17:56.338Z |
5574193 | 5574193 | 20241122052054_EcVyA | UK00AE | 2024-11-23T14:02:43.188Z | 2024-11-25T14:17:56.338Z |
5574194 | 5574194 | 20241122052054_EcVyA | UK00B0 | 2024-11-23T14:02:43.188Z | 2024-11-25T14:17:56.338Z |
5574195 | 5574195 | 20241122052054_EcVyA | UK00B1 | 2024-11-23T14:02:43.188Z | 2024-11-25T14:17:56.338Z |
5574196 | 5574196 | 20241122052054_EcVyA | UK00BA | 2024-11-23T14:02:43.188Z | 2024-11-25T14:17:56.338Z |
5574186 | 5574186 | 20241122052054_EcVyA | UK0031 | 2024-11-23T14:02:43.187Z | 2024-11-25T14:17:56.338Z |
5574187 | 5574187 | 20241122052054_EcVyA | UK007P | 2024-11-23T14:02:43.187Z | 2024-11-25T14:17:56.338Z |
5574188 | 5574188 | 20241122052054_EcVyA | UK007R | 2024-11-23T14:02:43.187Z | 2024-11-25T14:17:56.338Z |
5574189 | 5574189 | 20241122052054_EcVyA | UK008B | 2024-11-23T14:02:43.187Z | 2024-11-25T14:17:56.338Z |
5574183 | 5574183 | 20241122052054_EcVyA | UK000S | 2024-11-23T14:02:43.179Z | 2024-11-25T14:17:56.338Z |
5574184 | 5574184 | 20241122052054_EcVyA | UK001Z | 2024-11-23T14:02:43.179Z | 2024-11-25T14:17:56.338Z |
5574185 | 5574185 | 20241122052054_EcVyA | UK0030 | 2024-11-23T14:02:43.179Z | 2024-11-25T14:17:56.338Z |
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);