participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240130223438_2xDM2" 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 |
---|---|---|---|---|---|
3901138 | 3901138 | 20240130223438_2xDM2 | UK005S | 2024-02-01T14:02:37.683Z | 2024-02-08T14:20:08.851Z |
3901139 | 3901139 | 20240130223438_2xDM2 | UK008J | 2024-02-01T14:02:37.683Z | 2024-02-08T14:20:08.851Z |
3901140 | 3901140 | 20240130223438_2xDM2 | UK008W | 2024-02-01T14:02:37.683Z | 2024-02-08T14:20:08.851Z |
3901141 | 3901141 | 20240130223438_2xDM2 | UK009S | 2024-02-01T14:02:37.683Z | 2024-02-08T14:20:08.851Z |
3901142 | 3901142 | 20240130223438_2xDM2 | UK009T | 2024-02-01T14:02:37.683Z | 2024-02-08T14:20:08.851Z |
3901143 | 3901143 | 20240130223438_2xDM2 | UK00AT | 2024-02-01T14:02:37.683Z | 2024-02-08T14:20:08.851Z |
3901144 | 3901144 | 20240130223438_2xDM2 | UK00B2 | 2024-02-01T14:02:37.683Z | 2024-02-08T14:20:08.851Z |
3901145 | 3901145 | 20240130223438_2xDM2 | UK00BK | 2024-02-01T14:02:37.683Z | 2024-02-08T14:20:08.851Z |
3901132 | 3901132 | 20240130223438_2xDM2 | UK000Y | 2024-02-01T14:02:37.592Z | 2024-02-08T14:20:08.851Z |
3901133 | 3901133 | 20240130223438_2xDM2 | UK001S | 2024-02-01T14:02:37.592Z | 2024-02-08T14:20:08.851Z |
3901134 | 3901134 | 20240130223438_2xDM2 | UK0026 | 2024-02-01T14:02:37.592Z | 2024-02-08T14:20:08.851Z |
3901135 | 3901135 | 20240130223438_2xDM2 | UK002G | 2024-02-01T14:02:37.592Z | 2024-02-08T14:20:08.851Z |
3901136 | 3901136 | 20240130223438_2xDM2 | UK002H | 2024-02-01T14:02:37.592Z | 2024-02-08T14:20:08.851Z |
3901137 | 3901137 | 20240130223438_2xDM2 | UK0031 | 2024-02-01T14:02:37.592Z | 2024-02-08T14:20:08.851Z |
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);