participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240717002435_cp5vO" 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 |
---|---|---|---|---|---|
4655323 | 4655323 | 20240717002435_cp5vO | UK002X | 2024-07-18T12:05:48.766Z | 2024-07-25T12:14:01.514Z |
4655324 | 4655324 | 20240717002435_cp5vO | UK004V | 2024-07-18T12:05:48.766Z | 2024-07-25T12:14:01.514Z |
4655325 | 4655325 | 20240717002435_cp5vO | UK005H | 2024-07-18T12:05:48.766Z | 2024-07-25T12:14:01.514Z |
4655326 | 4655326 | 20240717002435_cp5vO | UK006A | 2024-07-18T12:05:48.766Z | 2024-07-25T12:14:01.514Z |
4655327 | 4655327 | 20240717002435_cp5vO | UK006E | 2024-07-18T12:05:48.766Z | 2024-07-25T12:14:01.514Z |
4655328 | 4655328 | 20240717002435_cp5vO | UK006J | 2024-07-18T12:05:48.766Z | 2024-07-25T12:14:01.514Z |
4655329 | 4655329 | 20240717002435_cp5vO | UK006T | 2024-07-18T12:05:48.766Z | 2024-07-25T12:14:01.514Z |
4655330 | 4655330 | 20240717002435_cp5vO | UK0074 | 2024-07-18T12:05:48.766Z | 2024-07-25T12:14:01.514Z |
4655331 | 4655331 | 20240717002435_cp5vO | UK0087 | 2024-07-18T12:05:48.766Z | 2024-07-25T12:14:01.514Z |
4655332 | 4655332 | 20240717002435_cp5vO | UK008G | 2024-07-18T12:05:48.766Z | 2024-07-25T12:14:01.514Z |
4655333 | 4655333 | 20240717002435_cp5vO | UK00A3 | 2024-07-18T12:05:48.766Z | 2024-07-25T12:14:01.514Z |
4655322 | 4655322 | 20240717002435_cp5vO | UK001T | 2024-07-18T12:05:48.763Z | 2024-07-25T12:14:01.514Z |
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);