participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
18 rows where meteor_unique_trajectory_identifier = "20240528143542_NKI7v" 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 |
---|---|---|---|---|---|
4385227 | 4385227 | 20240528143542_NKI7v | KR002F | 2024-05-29T12:03:03.591Z | 2024-06-06T12:14:24.422Z |
4385228 | 4385228 | 20240528143542_NKI7v | KR002N | 2024-05-29T12:03:03.591Z | 2024-06-06T12:14:24.422Z |
4385229 | 4385229 | 20240528143542_NKI7v | KR002U | 2024-05-29T12:03:03.591Z | 2024-06-06T12:14:24.422Z |
4385230 | 4385230 | 20240528143542_NKI7v | KR002V | 2024-05-29T12:03:03.591Z | 2024-06-06T12:14:24.422Z |
4385231 | 4385231 | 20240528143542_NKI7v | KR003B | 2024-05-29T12:03:03.591Z | 2024-06-06T12:14:24.422Z |
4385232 | 4385232 | 20240528143542_NKI7v | KR003N | 2024-05-29T12:03:03.591Z | 2024-06-06T12:14:24.422Z |
4385233 | 4385233 | 20240528143542_NKI7v | KR003X | 2024-05-29T12:03:03.591Z | 2024-06-06T12:14:24.422Z |
4385216 | 4385216 | 20240528143542_NKI7v | KR0007 | 2024-05-29T12:03:03.590Z | 2024-06-06T12:14:24.422Z |
4385217 | 4385217 | 20240528143542_NKI7v | KR0008 | 2024-05-29T12:03:03.590Z | 2024-06-06T12:14:24.422Z |
4385218 | 4385218 | 20240528143542_NKI7v | KR000A | 2024-05-29T12:03:03.590Z | 2024-06-06T12:14:24.422Z |
4385219 | 4385219 | 20240528143542_NKI7v | KR000L | 2024-05-29T12:03:03.590Z | 2024-06-06T12:14:24.422Z |
4385220 | 4385220 | 20240528143542_NKI7v | KR000N | 2024-05-29T12:03:03.590Z | 2024-06-06T12:14:24.422Z |
4385221 | 4385221 | 20240528143542_NKI7v | KR0010 | 2024-05-29T12:03:03.590Z | 2024-06-06T12:14:24.422Z |
4385222 | 4385222 | 20240528143542_NKI7v | KR0012 | 2024-05-29T12:03:03.590Z | 2024-06-06T12:14:24.422Z |
4385223 | 4385223 | 20240528143542_NKI7v | KR0014 | 2024-05-29T12:03:03.590Z | 2024-06-06T12:14:24.422Z |
4385224 | 4385224 | 20240528143542_NKI7v | KR001C | 2024-05-29T12:03:03.590Z | 2024-06-06T12:14:24.422Z |
4385225 | 4385225 | 20240528143542_NKI7v | KR001D | 2024-05-29T12:03:03.590Z | 2024-06-06T12:14:24.422Z |
4385226 | 4385226 | 20240528143542_NKI7v | KR002E | 2024-05-29T12:03:03.590Z | 2024-06-06T12:14:24.422Z |
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);