participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20231113112120_f5cph" 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 |
---|---|---|---|---|---|
3383090 | 3383090 | 20231113112120_f5cph | KR0002 | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
3383091 | 3383091 | 20231113112120_f5cph | KR0004 | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
3383092 | 3383092 | 20231113112120_f5cph | KR000B | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
3383093 | 3383093 | 20231113112120_f5cph | KR000L | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
3383094 | 3383094 | 20231113112120_f5cph | KR000W | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
3383095 | 3383095 | 20231113112120_f5cph | KR0010 | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
3383096 | 3383096 | 20231113112120_f5cph | KR001A | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
3383097 | 3383097 | 20231113112120_f5cph | KR001B | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
3383098 | 3383098 | 20231113112120_f5cph | KR0023 | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
3383099 | 3383099 | 20231113112120_f5cph | KR002G | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
3383100 | 3383100 | 20231113112120_f5cph | KR002W | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
3383101 | 3383101 | 20231113112120_f5cph | KR003L | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
3383102 | 3383102 | 20231113112120_f5cph | KR003M | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
3383103 | 3383103 | 20231113112120_f5cph | KR003S | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
3383104 | 3383104 | 20231113112120_f5cph | KR003T | 2024-01-06T00:04:18.011Z | 2024-01-06T00:04:18.011Z |
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);