participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240719014340_14AC8" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4668359 | 4668359 | 20240719014340_14AC8 | UK005E | 2024-07-20T12:04:29.434Z | 2024-07-27T12:17:17.117Z |
4668360 | 4668360 | 20240719014340_14AC8 | UK005M | 2024-07-20T12:04:29.434Z | 2024-07-27T12:17:17.117Z |
4668361 | 4668361 | 20240719014340_14AC8 | UK006L | 2024-07-20T12:04:29.434Z | 2024-07-27T12:17:17.117Z |
4668362 | 4668362 | 20240719014340_14AC8 | UK006P | 2024-07-20T12:04:29.434Z | 2024-07-27T12:17:17.117Z |
4668363 | 4668363 | 20240719014340_14AC8 | UK007N | 2024-07-20T12:04:29.434Z | 2024-07-27T12:17:17.117Z |
4668364 | 4668364 | 20240719014340_14AC8 | UK0087 | 2024-07-20T12:04:29.434Z | 2024-07-27T12:17:17.117Z |
4668365 | 4668365 | 20240719014340_14AC8 | UK0098 | 2024-07-20T12:04:29.434Z | 2024-07-27T12:17:17.117Z |
4668366 | 4668366 | 20240719014340_14AC8 | UK0099 | 2024-07-20T12:04:29.434Z | 2024-07-27T12:17:17.117Z |
4668367 | 4668367 | 20240719014340_14AC8 | UK00A0 | 2024-07-20T12:04:29.434Z | 2024-07-27T12:17:17.117Z |
4668368 | 4668368 | 20240719014340_14AC8 | UK00AL | 2024-07-20T12:04:29.434Z | 2024-07-27T12:17:17.117Z |
4668369 | 4668369 | 20240719014340_14AC8 | UK00AT | 2024-07-20T12:04:29.434Z | 2024-07-27T12:17:17.117Z |
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);