participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240306022456_OmJ3o" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4035097 | 4035097 | 20240306022456_OmJ3o | IE0004 | 2024-03-07T14:07:30.538Z | 2024-03-14T12:25:12.684Z |
4035098 | 4035098 | 20240306022456_OmJ3o | UK000Y | 2024-03-07T14:07:30.538Z | 2024-03-14T12:25:12.684Z |
4035099 | 4035099 | 20240306022456_OmJ3o | UK003F | 2024-03-07T14:07:30.538Z | 2024-03-14T12:25:12.684Z |
4035100 | 4035100 | 20240306022456_OmJ3o | UK007A | 2024-03-07T14:07:30.538Z | 2024-03-14T12:25:12.684Z |
4035101 | 4035101 | 20240306022456_OmJ3o | UK007P | 2024-03-07T14:07:30.538Z | 2024-03-14T12:25:12.684Z |
4035102 | 4035102 | 20240306022456_OmJ3o | UK008J | 2024-03-07T14:07:30.538Z | 2024-03-14T12:25:12.684Z |
4035103 | 4035103 | 20240306022456_OmJ3o | UK008U | 2024-03-07T14:07:30.538Z | 2024-03-14T12:25:12.685Z |
4035104 | 4035104 | 20240306022456_OmJ3o | UK009K | 2024-03-07T14:07:30.538Z | 2024-03-14T12:25:12.685Z |
4035105 | 4035105 | 20240306022456_OmJ3o | UK009P | 2024-03-07T14:07:30.538Z | 2024-03-14T12:25:12.685Z |
4035106 | 4035106 | 20240306022456_OmJ3o | UK009S | 2024-03-07T14:07:30.538Z | 2024-03-14T12:25:12.685Z |
4035107 | 4035107 | 20240306022456_OmJ3o | UK00B0 | 2024-03-07T14:07:30.538Z | 2024-03-14T12:25:12.685Z |
4035108 | 4035108 | 20240306022456_OmJ3o | UK00C1 | 2024-03-07T14:07:30.538Z | 2024-03-14T12:25:12.685Z |
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);