participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20230807001940_LhUXl" 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 |
---|---|---|---|---|---|
2708899 | 2708899 | 20230807001940_LhUXl | UK002F | 2024-01-06T00:00:17.776Z | 2024-01-06T00:00:17.776Z |
2708900 | 2708900 | 20230807001940_LhUXl | UK0034 | 2024-01-06T00:00:17.776Z | 2024-01-06T00:00:17.776Z |
2708901 | 2708901 | 20230807001940_LhUXl | UK0035 | 2024-01-06T00:00:17.776Z | 2024-01-06T00:00:17.776Z |
2708902 | 2708902 | 20230807001940_LhUXl | UK0041 | 2024-01-06T00:00:17.776Z | 2024-01-06T00:00:17.776Z |
2708903 | 2708903 | 20230807001940_LhUXl | UK004P | 2024-01-06T00:00:17.776Z | 2024-01-06T00:00:17.776Z |
2708904 | 2708904 | 20230807001940_LhUXl | UK005E | 2024-01-06T00:00:17.776Z | 2024-01-06T00:00:17.776Z |
2708905 | 2708905 | 20230807001940_LhUXl | UK0063 | 2024-01-06T00:00:17.776Z | 2024-01-06T00:00:17.776Z |
2708906 | 2708906 | 20230807001940_LhUXl | UK006B | 2024-01-06T00:00:17.776Z | 2024-01-06T00:00:17.776Z |
2708907 | 2708907 | 20230807001940_LhUXl | UK007C | 2024-01-06T00:00:17.776Z | 2024-01-06T00:00:17.776Z |
2708908 | 2708908 | 20230807001940_LhUXl | UK007N | 2024-01-06T00:00:17.776Z | 2024-01-06T00:00:17.776Z |
2708909 | 2708909 | 20230807001940_LhUXl | UK008F | 2024-01-06T00:00:17.776Z | 2024-01-06T00:00:17.776Z |
2708910 | 2708910 | 20230807001940_LhUXl | UK0099 | 2024-01-06T00:00:17.776Z | 2024-01-06T00:00:17.776Z |
2708911 | 2708911 | 20230807001940_LhUXl | UK00A4 | 2024-01-06T00:00:17.776Z | 2024-01-06T00:00:17.776Z |
2708912 | 2708912 | 20230807001940_LhUXl | UK00A9 | 2024-01-06T00:00:17.776Z | 2024-01-06T00:00:17.776Z |
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);