participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240903152932_QXNTL" 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 |
---|---|---|---|---|---|
5005528 | 5005528 | 20240903152932_QXNTL | NZ0017 | 2024-09-09T12:03:47.695Z | 2024-09-12T12:19:06.130Z |
5005529 | 5005529 | 20240903152932_QXNTL | NZ001S | 2024-09-09T12:03:47.695Z | 2024-09-12T12:19:06.130Z |
5005530 | 5005530 | 20240903152932_QXNTL | NZ0024 | 2024-09-09T12:03:47.695Z | 2024-09-12T12:19:06.130Z |
5005531 | 5005531 | 20240903152932_QXNTL | NZ002R | 2024-09-09T12:03:47.695Z | 2024-09-12T12:19:06.130Z |
5005532 | 5005532 | 20240903152932_QXNTL | NZ002X | 2024-09-09T12:03:47.695Z | 2024-09-12T12:19:06.130Z |
5005533 | 5005533 | 20240903152932_QXNTL | NZ0034 | 2024-09-09T12:03:47.695Z | 2024-09-12T12:19:06.130Z |
5005534 | 5005534 | 20240903152932_QXNTL | NZ0036 | 2024-09-09T12:03:47.695Z | 2024-09-12T12:19:06.130Z |
5005535 | 5005535 | 20240903152932_QXNTL | NZ003X | 2024-09-09T12:03:47.695Z | 2024-09-12T12:19:06.130Z |
5005536 | 5005536 | 20240903152932_QXNTL | NZ003Y | 2024-09-09T12:03:47.695Z | 2024-09-12T12:19:06.130Z |
5005537 | 5005537 | 20240903152932_QXNTL | NZ0041 | 2024-09-09T12:03:47.695Z | 2024-09-12T12:19:06.130Z |
5005538 | 5005538 | 20240903152932_QXNTL | NZ0046 | 2024-09-09T12:03:47.695Z | 2024-09-12T12:19:06.130Z |
5005539 | 5005539 | 20240903152932_QXNTL | NZ004M | 2024-09-09T12:03:47.695Z | 2024-09-12T12:19:06.130Z |
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);