participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
17 rows where meteor_unique_trajectory_identifier = "20240417011242_7JFnI" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4201027 | 4201027 | 20240417011242_7JFnI | UK000Z | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.484Z |
4201028 | 4201028 | 20240417011242_7JFnI | UK002X | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.484Z |
4201029 | 4201029 | 20240417011242_7JFnI | UK002Z | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.484Z |
4201030 | 4201030 | 20240417011242_7JFnI | UK0031 | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.484Z |
4201031 | 4201031 | 20240417011242_7JFnI | UK003T | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.484Z |
4201032 | 4201032 | 20240417011242_7JFnI | UK003X | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.484Z |
4201033 | 4201033 | 20240417011242_7JFnI | UK004D | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.485Z |
4201034 | 4201034 | 20240417011242_7JFnI | UK004V | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.485Z |
4201035 | 4201035 | 20240417011242_7JFnI | UK006T | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.485Z |
4201036 | 4201036 | 20240417011242_7JFnI | UK006Z | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.485Z |
4201037 | 4201037 | 20240417011242_7JFnI | UK0074 | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.485Z |
4201038 | 4201038 | 20240417011242_7JFnI | UK007A | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.485Z |
4201039 | 4201039 | 20240417011242_7JFnI | UK008G | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.485Z |
4201040 | 4201040 | 20240417011242_7JFnI | UK00A3 | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.485Z |
4201041 | 4201041 | 20240417011242_7JFnI | UK00AE | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.485Z |
4201042 | 4201042 | 20240417011242_7JFnI | UK00B1 | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.485Z |
4201043 | 4201043 | 20240417011242_7JFnI | UK00C2 | 2024-04-18T12:02:40.815Z | 2024-04-25T12:21:12.485Z |
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);