participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240916205455_3OK9Z" 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 |
---|---|---|---|---|---|
5127201 | 5127201 | 20240916205455_3OK9Z | UK002F | 2024-09-19T12:08:32.234Z | 2024-09-25T12:22:09.756Z |
5127202 | 5127202 | 20240916205455_3OK9Z | UK002K | 2024-09-19T12:08:32.234Z | 2024-09-25T12:22:09.756Z |
5127203 | 5127203 | 20240916205455_3OK9Z | UK003X | 2024-09-19T12:08:32.234Z | 2024-09-25T12:22:09.756Z |
5127204 | 5127204 | 20240916205455_3OK9Z | UK005E | 2024-09-19T12:08:32.234Z | 2024-09-25T12:22:09.756Z |
5127205 | 5127205 | 20240916205455_3OK9Z | UK007Y | 2024-09-19T12:08:32.234Z | 2024-09-25T12:22:09.757Z |
5127206 | 5127206 | 20240916205455_3OK9Z | UK0087 | 2024-09-19T12:08:32.234Z | 2024-09-25T12:22:09.757Z |
5127207 | 5127207 | 20240916205455_3OK9Z | UK0099 | 2024-09-19T12:08:32.234Z | 2024-09-25T12:22:09.757Z |
5127208 | 5127208 | 20240916205455_3OK9Z | UK009L | 2024-09-19T12:08:32.234Z | 2024-09-25T12:22:09.757Z |
5127209 | 5127209 | 20240916205455_3OK9Z | UK00AL | 2024-09-19T12:08:32.234Z | 2024-09-25T12:22:09.757Z |
5127210 | 5127210 | 20240916205455_3OK9Z | UK00B1 | 2024-09-19T12:08:32.234Z | 2024-09-25T12:22:09.757Z |
5127211 | 5127211 | 20240916205455_3OK9Z | UK00BH | 2024-09-19T12:08:32.234Z | 2024-09-25T12:22:09.757Z |
5127212 | 5127212 | 20240916205455_3OK9Z | UK00C2 | 2024-09-19T12:08:32.234Z | 2024-09-25T12:22:09.757Z |
5127213 | 5127213 | 20240916205455_3OK9Z | UK00CC | 2024-09-19T12:08:32.234Z | 2024-09-25T12:22:09.757Z |
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);