participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20240301161858_iwPyf" 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 |
---|---|---|---|---|---|
4015824 | 4015824 | 20240301161858_iwPyf | KR001U | 2024-03-03T14:04:04.218Z | 2024-03-10T12:21:11.184Z |
4015825 | 4015825 | 20240301161858_iwPyf | KR001W | 2024-03-03T14:04:04.218Z | 2024-03-10T12:21:11.184Z |
4015826 | 4015826 | 20240301161858_iwPyf | KR0022 | 2024-03-03T14:04:04.218Z | 2024-03-10T12:21:11.184Z |
4015827 | 4015827 | 20240301161858_iwPyf | KR002V | 2024-03-03T14:04:04.218Z | 2024-03-10T12:21:11.184Z |
4015828 | 4015828 | 20240301161858_iwPyf | KR003B | 2024-03-03T14:04:04.218Z | 2024-03-10T12:21:11.184Z |
4015829 | 4015829 | 20240301161858_iwPyf | KR003M | 2024-03-03T14:04:04.218Z | 2024-03-10T12:21:11.184Z |
4015830 | 4015830 | 20240301161858_iwPyf | KR003N | 2024-03-03T14:04:04.218Z | 2024-03-10T12:21:11.184Z |
4015831 | 4015831 | 20240301161858_iwPyf | KR003Q | 2024-03-03T14:04:04.218Z | 2024-03-10T12:21:11.184Z |
4015832 | 4015832 | 20240301161858_iwPyf | KR003T | 2024-03-03T14:04:04.218Z | 2024-03-10T12:21:11.184Z |
4015833 | 4015833 | 20240301161858_iwPyf | KR003X | 2024-03-03T14:04:04.218Z | 2024-03-10T12:21:11.184Z |
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);