participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240810014458_vq7c4" 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 |
---|---|---|---|---|---|
4926268 | 4926268 | 20240810014458_vq7c4 | UK007R | 2024-08-31T12:19:33.723Z | 2024-09-02T12:27:44.488Z |
4926269 | 4926269 | 20240810014458_vq7c4 | UK009L | 2024-08-31T12:19:33.723Z | 2024-09-02T12:27:44.488Z |
4926270 | 4926270 | 20240810014458_vq7c4 | UK00A4 | 2024-08-31T12:19:33.723Z | 2024-09-02T12:27:44.488Z |
4926271 | 4926271 | 20240810014458_vq7c4 | UK00AN | 2024-08-31T12:19:33.723Z | 2024-09-02T12:27:44.488Z |
4926272 | 4926272 | 20240810014458_vq7c4 | UK00B1 | 2024-08-31T12:19:33.723Z | 2024-09-02T12:27:44.488Z |
4926273 | 4926273 | 20240810014458_vq7c4 | UK00CC | 2024-08-31T12:19:33.723Z | 2024-09-02T12:27:44.488Z |
4926265 | 4926265 | 20240810014458_vq7c4 | UK004A | 2024-08-31T12:19:33.719Z | 2024-09-02T12:27:44.488Z |
4926266 | 4926266 | 20240810014458_vq7c4 | UK006B | 2024-08-31T12:19:33.719Z | 2024-09-02T12:27:44.488Z |
4926267 | 4926267 | 20240810014458_vq7c4 | UK007B | 2024-08-31T12:19:33.719Z | 2024-09-02T12:27:44.488Z |
4926263 | 4926263 | 20240810014458_vq7c4 | UK002W | 2024-08-31T12:19:33.705Z | 2024-09-02T12:27:44.488Z |
4926264 | 4926264 | 20240810014458_vq7c4 | UK0041 | 2024-08-31T12:19:33.705Z | 2024-09-02T12:27:44.488Z |
4926262 | 4926262 | 20240810014458_vq7c4 | UK0001 | 2024-08-31T12:19:33.697Z | 2024-09-02T12:27:44.487Z |
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);