participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20231125010544_Bfkzk" 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 |
---|---|---|---|---|---|
3474943 | 3474943 | 20231125010544_Bfkzk | UK005U | 2024-01-06T00:04:42.990Z | 2024-01-06T00:04:42.990Z |
3474944 | 3474944 | 20231125010544_Bfkzk | UK006D | 2024-01-06T00:04:42.990Z | 2024-01-06T00:04:42.990Z |
3474945 | 3474945 | 20231125010544_Bfkzk | UK006R | 2024-01-06T00:04:42.990Z | 2024-01-06T00:04:42.990Z |
3474946 | 3474946 | 20231125010544_Bfkzk | UK007E | 2024-01-06T00:04:42.990Z | 2024-01-06T00:04:42.990Z |
3474947 | 3474947 | 20231125010544_Bfkzk | UK007R | 2024-01-06T00:04:42.990Z | 2024-01-06T00:04:42.990Z |
3474948 | 3474948 | 20231125010544_Bfkzk | UK009A | 2024-01-06T00:04:42.990Z | 2024-01-06T00:04:42.990Z |
3474949 | 3474949 | 20231125010544_Bfkzk | UK009V | 2024-01-06T00:04:42.990Z | 2024-01-06T00:04:42.990Z |
3474950 | 3474950 | 20231125010544_Bfkzk | UK00B1 | 2024-01-06T00:04:42.990Z | 2024-01-06T00:04:42.990Z |
3474939 | 3474939 | 20231125010544_Bfkzk | UK000F | 2024-01-06T00:04:42.989Z | 2024-01-06T00:04:42.989Z |
3474940 | 3474940 | 20231125010544_Bfkzk | UK001P | 2024-01-06T00:04:42.989Z | 2024-01-06T00:04:42.989Z |
3474941 | 3474941 | 20231125010544_Bfkzk | UK002Q | 2024-01-06T00:04:42.989Z | 2024-01-06T00:04:42.989Z |
3474942 | 3474942 | 20231125010544_Bfkzk | UK002W | 2024-01-06T00:04:42.989Z | 2024-01-06T00:04:42.989Z |
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);