participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240104051456_X7VQb" 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 |
---|---|---|---|---|---|
3748751 | 3748751 | 20240104051456_X7VQb | UK000S | 2024-01-06T14:10:11.089Z | 2024-01-12T14:25:35.366Z |
3748752 | 3748752 | 20240104051456_X7VQb | UK002F | 2024-01-06T14:10:11.089Z | 2024-01-12T14:25:35.366Z |
3748753 | 3748753 | 20240104051456_X7VQb | UK003A | 2024-01-06T14:10:11.089Z | 2024-01-12T14:25:35.366Z |
3748754 | 3748754 | 20240104051456_X7VQb | UK005E | 2024-01-06T14:10:11.089Z | 2024-01-12T14:25:35.366Z |
3748755 | 3748755 | 20240104051456_X7VQb | UK0063 | 2024-01-06T14:10:11.089Z | 2024-01-12T14:25:35.366Z |
3748756 | 3748756 | 20240104051456_X7VQb | UK007N | 2024-01-06T14:10:11.089Z | 2024-01-12T14:25:35.366Z |
3748757 | 3748757 | 20240104051456_X7VQb | UK0099 | 2024-01-06T14:10:11.089Z | 2024-01-12T14:25:35.366Z |
3748758 | 3748758 | 20240104051456_X7VQb | UK009L | 2024-01-06T14:10:11.089Z | 2024-01-12T14:25:35.366Z |
3748759 | 3748759 | 20240104051456_X7VQb | UK00A4 | 2024-01-06T14:10:11.089Z | 2024-01-12T14:25:35.367Z |
3748760 | 3748760 | 20240104051456_X7VQb | UK00AE | 2024-01-06T14:10:11.089Z | 2024-01-12T14:25:35.367Z |
3748761 | 3748761 | 20240104051456_X7VQb | UK00AL | 2024-01-06T14:10:11.089Z | 2024-01-12T14:25:35.367Z |
3748762 | 3748762 | 20240104051456_X7VQb | UK00AN | 2024-01-06T14:10:11.089Z | 2024-01-12T14:25:35.367Z |
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);