participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20240914204302_3jFoI" 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 |
---|---|---|---|---|---|
5111508 | 5111508 | 20240914204302_3jFoI | UK008W | 2024-09-18T12:01:59.983Z | 2024-09-23T12:15:57.354Z |
5111509 | 5111509 | 20240914204302_3jFoI | UK008X | 2024-09-18T12:01:59.983Z | 2024-09-23T12:15:57.354Z |
5111510 | 5111510 | 20240914204302_3jFoI | UK009D | 2024-09-18T12:01:59.983Z | 2024-09-23T12:15:57.354Z |
5111511 | 5111511 | 20240914204302_3jFoI | UK009G | 2024-09-18T12:01:59.983Z | 2024-09-23T12:15:57.354Z |
5111512 | 5111512 | 20240914204302_3jFoI | UK009K | 2024-09-18T12:01:59.983Z | 2024-09-23T12:15:57.354Z |
5111513 | 5111513 | 20240914204302_3jFoI | UK00B0 | 2024-09-18T12:01:59.983Z | 2024-09-23T12:15:57.354Z |
5111514 | 5111514 | 20240914204302_3jFoI | UK00BK | 2024-09-18T12:01:59.983Z | 2024-09-23T12:15:57.354Z |
5111515 | 5111515 | 20240914204302_3jFoI | UK00BL | 2024-09-18T12:01:59.983Z | 2024-09-23T12:15:57.354Z |
5111516 | 5111516 | 20240914204302_3jFoI | UK00BW | 2024-09-18T12:01:59.983Z | 2024-09-23T12:15:57.354Z |
5111507 | 5111507 | 20240914204302_3jFoI | UK007P | 2024-09-18T12:01:59.976Z | 2024-09-23T12:15:57.354Z |
5111506 | 5111506 | 20240914204302_3jFoI | UK007A | 2024-09-18T12:01:59.972Z | 2024-09-23T12:15:57.354Z |
5111501 | 5111501 | 20240914204302_3jFoI | UK0006 | 2024-09-18T12:01:59.962Z | 2024-09-23T12:15:57.354Z |
5111502 | 5111502 | 20240914204302_3jFoI | UK001Z | 2024-09-18T12:01:59.962Z | 2024-09-23T12:15:57.354Z |
5111503 | 5111503 | 20240914204302_3jFoI | UK0020 | 2024-09-18T12:01:59.962Z | 2024-09-23T12:15:57.354Z |
5111504 | 5111504 | 20240914204302_3jFoI | UK0031 | 2024-09-18T12:01:59.962Z | 2024-09-23T12:15:57.354Z |
5111505 | 5111505 | 20240914204302_3jFoI | UK0060 | 2024-09-18T12:01:59.962Z | 2024-09-23T12:15:57.354Z |
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);