participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
23 rows where meteor_unique_trajectory_identifier = "20240409231345_cLZuP" 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 |
---|---|---|---|---|---|
4166319 | 4166319 | 20240409231345_cLZuP | UK00B0 | 2024-04-11T12:05:20.850Z | 2024-04-18T12:21:09.033Z |
4166320 | 4166320 | 20240409231345_cLZuP | UK00BF | 2024-04-11T12:05:20.850Z | 2024-04-18T12:21:09.033Z |
4166321 | 4166321 | 20240409231345_cLZuP | UK00C1 | 2024-04-11T12:05:20.850Z | 2024-04-18T12:21:09.033Z |
4166299 | 4166299 | 20240409231345_cLZuP | UK000Y | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166300 | 4166300 | 20240409231345_cLZuP | UK001L | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166301 | 4166301 | 20240409231345_cLZuP | UK001Z | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166302 | 4166302 | 20240409231345_cLZuP | UK002Z | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166303 | 4166303 | 20240409231345_cLZuP | UK0030 | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166304 | 4166304 | 20240409231345_cLZuP | UK003B | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166305 | 4166305 | 20240409231345_cLZuP | UK003U | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166306 | 4166306 | 20240409231345_cLZuP | UK0042 | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166307 | 4166307 | 20240409231345_cLZuP | UK004D | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166308 | 4166308 | 20240409231345_cLZuP | UK004N | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166309 | 4166309 | 20240409231345_cLZuP | UK005V | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166310 | 4166310 | 20240409231345_cLZuP | UK006A | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166311 | 4166311 | 20240409231345_cLZuP | UK006L | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166312 | 4166312 | 20240409231345_cLZuP | UK007M | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166313 | 4166313 | 20240409231345_cLZuP | UK007P | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166314 | 4166314 | 20240409231345_cLZuP | UK0098 | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166315 | 4166315 | 20240409231345_cLZuP | UK009D | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166316 | 4166316 | 20240409231345_cLZuP | UK009P | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166317 | 4166317 | 20240409231345_cLZuP | UK00AE | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
4166318 | 4166318 | 20240409231345_cLZuP | UK00AT | 2024-04-11T12:05:20.849Z | 2024-04-18T12:21:09.033Z |
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);