participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20240305222415_x2VmG" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4034051 | 4034051 | 20240305222415_x2VmG | UK00AA | 2024-03-07T14:05:48.044Z | 2024-03-14T12:25:01.911Z |
4034052 | 4034052 | 20240305222415_x2VmG | UK00AM | 2024-03-07T14:05:48.044Z | 2024-03-14T12:25:01.911Z |
4034047 | 4034047 | 20240305222415_x2VmG | UK006A | 2024-03-07T14:05:48.027Z | 2024-03-14T12:25:01.911Z |
4034048 | 4034048 | 20240305222415_x2VmG | UK006Q | 2024-03-07T14:05:48.027Z | 2024-03-14T12:25:01.911Z |
4034049 | 4034049 | 20240305222415_x2VmG | UK0082 | 2024-03-07T14:05:48.027Z | 2024-03-14T12:25:01.911Z |
4034050 | 4034050 | 20240305222415_x2VmG | UK008G | 2024-03-07T14:05:48.027Z | 2024-03-14T12:25:01.911Z |
4034046 | 4034046 | 20240305222415_x2VmG | UK005R | 2024-03-07T14:05:48.011Z | 2024-03-14T12:25:01.911Z |
4034043 | 4034043 | 20240305222415_x2VmG | UK000Z | 2024-03-07T14:05:48.000Z | 2024-03-14T12:25:01.911Z |
4034044 | 4034044 | 20240305222415_x2VmG | UK001R | 2024-03-07T14:05:48.000Z | 2024-03-14T12:25:01.911Z |
4034045 | 4034045 | 20240305222415_x2VmG | UK0052 | 2024-03-07T14:05:48.000Z | 2024-03-14T12:25:01.911Z |
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);