participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20230821032124_7QFWe" 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 |
---|---|---|---|---|---|
2869642 | 2869642 | 20230821032124_7QFWe | UK0002 | 2024-01-06T00:01:06.024Z | 2024-01-06T00:01:06.024Z |
2869643 | 2869643 | 20230821032124_7QFWe | UK001P | 2024-01-06T00:01:06.024Z | 2024-01-06T00:01:06.024Z |
2869644 | 2869644 | 20230821032124_7QFWe | UK0026 | 2024-01-06T00:01:06.024Z | 2024-01-06T00:01:06.024Z |
2869645 | 2869645 | 20230821032124_7QFWe | UK0031 | 2024-01-06T00:01:06.024Z | 2024-01-06T00:01:06.024Z |
2869646 | 2869646 | 20230821032124_7QFWe | UK0035 | 2024-01-06T00:01:06.024Z | 2024-01-06T00:01:06.024Z |
2869647 | 2869647 | 20230821032124_7QFWe | UK0041 | 2024-01-06T00:01:06.024Z | 2024-01-06T00:01:06.024Z |
2869648 | 2869648 | 20230821032124_7QFWe | UK006B | 2024-01-06T00:01:06.024Z | 2024-01-06T00:01:06.024Z |
2869649 | 2869649 | 20230821032124_7QFWe | UK0070 | 2024-01-06T00:01:06.024Z | 2024-01-06T00:01:06.024Z |
2869650 | 2869650 | 20230821032124_7QFWe | UK0086 | 2024-01-06T00:01:06.024Z | 2024-01-06T00:01:06.024Z |
2869651 | 2869651 | 20230821032124_7QFWe | UK0092 | 2024-01-06T00:01:06.024Z | 2024-01-06T00:01:06.024Z |
2869652 | 2869652 | 20230821032124_7QFWe | UK0098 | 2024-01-06T00:01:06.024Z | 2024-01-06T00:01:06.024Z |
2869653 | 2869653 | 20230821032124_7QFWe | UK009G | 2024-01-06T00:01:06.024Z | 2024-01-06T00:01:06.024Z |
2869654 | 2869654 | 20230821032124_7QFWe | UK009J | 2024-01-06T00:01:06.024Z | 2024-01-06T00:01:06.024Z |
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);