participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240708015523_eBF31" 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 |
---|---|---|---|---|---|
4596857 | 4596857 | 20240708015523_eBF31 | UK000H | 2024-07-11T12:01:27.533Z | 2024-07-16T12:09:09.946Z |
4596858 | 4596858 | 20240708015523_eBF31 | UK0022 | 2024-07-11T12:01:27.533Z | 2024-07-16T12:09:09.946Z |
4596859 | 4596859 | 20240708015523_eBF31 | UK006H | 2024-07-11T12:01:27.533Z | 2024-07-16T12:09:09.946Z |
4596860 | 4596860 | 20240708015523_eBF31 | UK006X | 2024-07-11T12:01:27.533Z | 2024-07-16T12:09:09.946Z |
4596861 | 4596861 | 20240708015523_eBF31 | UK0089 | 2024-07-11T12:01:27.533Z | 2024-07-16T12:09:09.946Z |
4596862 | 4596862 | 20240708015523_eBF31 | UK008D | 2024-07-11T12:01:27.533Z | 2024-07-16T12:09:09.946Z |
4596863 | 4596863 | 20240708015523_eBF31 | UK008E | 2024-07-11T12:01:27.533Z | 2024-07-16T12:09:09.946Z |
4596864 | 4596864 | 20240708015523_eBF31 | UK008W | 2024-07-11T12:01:27.533Z | 2024-07-16T12:09:09.946Z |
4596865 | 4596865 | 20240708015523_eBF31 | UK00AB | 2024-07-11T12:01:27.533Z | 2024-07-16T12:09:09.946Z |
4596866 | 4596866 | 20240708015523_eBF31 | UK00AK | 2024-07-11T12:01:27.533Z | 2024-07-16T12:09:09.946Z |
4596867 | 4596867 | 20240708015523_eBF31 | UK00AU | 2024-07-11T12:01:27.533Z | 2024-07-16T12:09:09.946Z |
4596868 | 4596868 | 20240708015523_eBF31 | UK00B5 | 2024-07-11T12:01:27.533Z | 2024-07-16T12:09:09.946Z |
4596869 | 4596869 | 20240708015523_eBF31 | UK00BE | 2024-07-11T12:01:27.533Z | 2024-07-16T12:09:09.946Z |
4596870 | 4596870 | 20240708015523_eBF31 | UK00BW | 2024-07-11T12:01:27.533Z | 2024-07-16T12:09:09.946Z |
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);