participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240510152544_dw503" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4344665 | 4344665 | 20240510152544_dw503 | KR003L | 2024-05-20T12:02:14.588Z | 2024-05-22T12:09:46.836Z |
4344664 | 4344664 | 20240510152544_dw503 | KR003G | 2024-05-20T12:02:14.587Z | 2024-05-22T12:09:46.836Z |
4344662 | 4344662 | 20240510152544_dw503 | KR002P | 2024-05-20T12:02:14.584Z | 2024-05-22T12:09:46.836Z |
4344663 | 4344663 | 20240510152544_dw503 | KR003B | 2024-05-20T12:02:14.584Z | 2024-05-22T12:09:46.836Z |
4344661 | 4344661 | 20240510152544_dw503 | KR002L | 2024-05-20T12:02:14.583Z | 2024-05-22T12:09:46.836Z |
4344660 | 4344660 | 20240510152544_dw503 | KR002G | 2024-05-20T12:02:14.572Z | 2024-05-22T12:09:46.836Z |
4344659 | 4344659 | 20240510152544_dw503 | KR001Y | 2024-05-20T12:02:14.571Z | 2024-05-22T12:09:46.836Z |
4344658 | 4344658 | 20240510152544_dw503 | KR001H | 2024-05-20T12:02:14.570Z | 2024-05-22T12:09:46.836Z |
4344652 | 4344652 | 20240510152544_dw503 | KR0004 | 2024-05-20T12:02:14.566Z | 2024-05-22T12:09:46.835Z |
4344653 | 4344653 | 20240510152544_dw503 | KR0006 | 2024-05-20T12:02:14.566Z | 2024-05-22T12:09:46.835Z |
4344654 | 4344654 | 20240510152544_dw503 | KR000D | 2024-05-20T12:02:14.566Z | 2024-05-22T12:09:46.835Z |
4344655 | 4344655 | 20240510152544_dw503 | KR000L | 2024-05-20T12:02:14.566Z | 2024-05-22T12:09:46.835Z |
4344656 | 4344656 | 20240510152544_dw503 | KR001B | 2024-05-20T12:02:14.566Z | 2024-05-22T12:09:46.836Z |
4344657 | 4344657 | 20240510152544_dw503 | KR001E | 2024-05-20T12:02:14.566Z | 2024-05-22T12:09:46.836Z |
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);