participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20240811235244_t1ME3" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4978606 | 4978606 | 20240811235244_t1ME3 | UK00BC | 2024-09-06T12:12:36.735Z | 2024-09-06T12:12:36.735Z |
4978607 | 4978607 | 20240811235244_t1ME3 | UK00BH | 2024-09-06T12:12:36.735Z | 2024-09-06T12:12:36.735Z |
4978608 | 4978608 | 20240811235244_t1ME3 | UK00CA | 2024-09-06T12:12:36.735Z | 2024-09-06T12:12:36.735Z |
4978603 | 4978603 | 20240811235244_t1ME3 | UK009A | 2024-09-06T12:12:36.734Z | 2024-09-06T12:12:36.734Z |
4978604 | 4978604 | 20240811235244_t1ME3 | UK009L | 2024-09-06T12:12:36.734Z | 2024-09-06T12:12:36.734Z |
4978605 | 4978605 | 20240811235244_t1ME3 | UK00AF | 2024-09-06T12:12:36.734Z | 2024-09-06T12:12:36.734Z |
4978593 | 4978593 | 20240811235244_t1ME3 | BE000A | 2024-09-06T12:12:36.681Z | 2024-09-06T12:12:36.681Z |
4978594 | 4978594 | 20240811235244_t1ME3 | UK000F | 2024-09-06T12:12:36.681Z | 2024-09-06T12:12:36.681Z |
4978595 | 4978595 | 20240811235244_t1ME3 | UK002F | 2024-09-06T12:12:36.681Z | 2024-09-06T12:12:36.681Z |
4978596 | 4978596 | 20240811235244_t1ME3 | UK002Y | 2024-09-06T12:12:36.681Z | 2024-09-06T12:12:36.681Z |
4978597 | 4978597 | 20240811235244_t1ME3 | UK0034 | 2024-09-06T12:12:36.681Z | 2024-09-06T12:12:36.681Z |
4978598 | 4978598 | 20240811235244_t1ME3 | UK0041 | 2024-09-06T12:12:36.681Z | 2024-09-06T12:12:36.681Z |
4978599 | 4978599 | 20240811235244_t1ME3 | UK0045 | 2024-09-06T12:12:36.681Z | 2024-09-06T12:12:36.681Z |
4978600 | 4978600 | 20240811235244_t1ME3 | UK004C | 2024-09-06T12:12:36.681Z | 2024-09-06T12:12:36.681Z |
4978601 | 4978601 | 20240811235244_t1ME3 | UK006U | 2024-09-06T12:12:36.681Z | 2024-09-06T12:12:36.681Z |
4978602 | 4978602 | 20240811235244_t1ME3 | UK008M | 2024-09-06T12:12:36.681Z | 2024-09-06T12:12:36.681Z |
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);