participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
18 rows where meteor_unique_trajectory_identifier = "20240714225221_qFK0F" 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 |
---|---|---|---|---|---|
4647543 | 4647543 | 20240714225221_qFK0F | UK0084 | 2024-07-17T12:07:04.844Z | 2024-07-23T12:08:40.986Z |
4647544 | 4647544 | 20240714225221_qFK0F | UK008B | 2024-07-17T12:07:04.844Z | 2024-07-23T12:08:40.986Z |
4647545 | 4647545 | 20240714225221_qFK0F | UK008V | 2024-07-17T12:07:04.844Z | 2024-07-23T12:08:40.986Z |
4647546 | 4647546 | 20240714225221_qFK0F | UK008W | 2024-07-17T12:07:04.844Z | 2024-07-23T12:08:40.986Z |
4647547 | 4647547 | 20240714225221_qFK0F | UK009G | 2024-07-17T12:07:04.844Z | 2024-07-23T12:08:40.986Z |
4647548 | 4647548 | 20240714225221_qFK0F | UK009K | 2024-07-17T12:07:04.844Z | 2024-07-23T12:08:40.986Z |
4647549 | 4647549 | 20240714225221_qFK0F | UK009W | 2024-07-17T12:07:04.844Z | 2024-07-23T12:08:40.986Z |
4647550 | 4647550 | 20240714225221_qFK0F | UK00A5 | 2024-07-17T12:07:04.844Z | 2024-07-23T12:08:40.986Z |
4647551 | 4647551 | 20240714225221_qFK0F | UK00B2 | 2024-07-17T12:07:04.844Z | 2024-07-23T12:08:40.986Z |
4647552 | 4647552 | 20240714225221_qFK0F | UK00B6 | 2024-07-17T12:07:04.844Z | 2024-07-23T12:08:40.986Z |
4647535 | 4647535 | 20240714225221_qFK0F | UK0006 | 2024-07-17T12:07:04.841Z | 2024-07-23T12:08:40.986Z |
4647536 | 4647536 | 20240714225221_qFK0F | UK000S | 2024-07-17T12:07:04.841Z | 2024-07-23T12:08:40.986Z |
4647537 | 4647537 | 20240714225221_qFK0F | UK001Z | 2024-07-17T12:07:04.841Z | 2024-07-23T12:08:40.986Z |
4647538 | 4647538 | 20240714225221_qFK0F | UK002W | 2024-07-17T12:07:04.841Z | 2024-07-23T12:08:40.986Z |
4647539 | 4647539 | 20240714225221_qFK0F | UK0031 | 2024-07-17T12:07:04.841Z | 2024-07-23T12:08:40.986Z |
4647540 | 4647540 | 20240714225221_qFK0F | UK0049 | 2024-07-17T12:07:04.841Z | 2024-07-23T12:08:40.986Z |
4647541 | 4647541 | 20240714225221_qFK0F | UK004G | 2024-07-17T12:07:04.841Z | 2024-07-23T12:08:40.986Z |
4647542 | 4647542 | 20240714225221_qFK0F | UK0069 | 2024-07-17T12:07:04.841Z | 2024-07-23T12:08:40.986Z |
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);