participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240811012942_yXKaa" 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 |
---|---|---|---|---|---|
4948153 | 4948153 | 20240811012942_yXKaa | BE000A | 2024-09-02T12:14:56.357Z | 2024-09-06T12:27:10.304Z |
4948154 | 4948154 | 20240811012942_yXKaa | BE000B | 2024-09-02T12:14:56.357Z | 2024-09-06T12:27:10.305Z |
4948155 | 4948155 | 20240811012942_yXKaa | UK002Y | 2024-09-02T12:14:56.357Z | 2024-09-06T12:27:10.305Z |
4948156 | 4948156 | 20240811012942_yXKaa | UK0034 | 2024-09-02T12:14:56.357Z | 2024-09-06T12:27:10.305Z |
4948157 | 4948157 | 20240811012942_yXKaa | UK006B | 2024-09-02T12:14:56.357Z | 2024-09-06T12:27:10.305Z |
4948158 | 4948158 | 20240811012942_yXKaa | UK006U | 2024-09-02T12:14:56.357Z | 2024-09-06T12:27:10.305Z |
4948159 | 4948159 | 20240811012942_yXKaa | UK008M | 2024-09-02T12:14:56.357Z | 2024-09-06T12:27:10.305Z |
4948160 | 4948160 | 20240811012942_yXKaa | UK009L | 2024-09-02T12:14:56.357Z | 2024-09-06T12:27:10.305Z |
4948161 | 4948161 | 20240811012942_yXKaa | UK00A4 | 2024-09-02T12:14:56.357Z | 2024-09-06T12:27:10.305Z |
4948162 | 4948162 | 20240811012942_yXKaa | UK00AN | 2024-09-02T12:14:56.357Z | 2024-09-06T12:27:10.305Z |
4948163 | 4948163 | 20240811012942_yXKaa | UK00BC | 2024-09-02T12:14:56.357Z | 2024-09-06T12:27:10.305Z |
4948164 | 4948164 | 20240811012942_yXKaa | UK00BJ | 2024-09-02T12:14:56.357Z | 2024-09-06T12:27:10.305Z |
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);