participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20240913213756_QKdb2" 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 |
---|---|---|---|---|---|
5099582 | 5099582 | 20240913213756_QKdb2 | UK005N | 2024-09-17T12:03:11.594Z | 2024-09-22T12:17:47.949Z |
5099583 | 5099583 | 20240913213756_QKdb2 | UK006D | 2024-09-17T12:03:11.594Z | 2024-09-22T12:17:47.949Z |
5099584 | 5099584 | 20240913213756_QKdb2 | UK007H | 2024-09-17T12:03:11.594Z | 2024-09-22T12:17:47.949Z |
5099585 | 5099585 | 20240913213756_QKdb2 | UK007R | 2024-09-17T12:03:11.594Z | 2024-09-22T12:17:47.949Z |
5099586 | 5099586 | 20240913213756_QKdb2 | UK007V | 2024-09-17T12:03:11.594Z | 2024-09-22T12:17:47.949Z |
5099587 | 5099587 | 20240913213756_QKdb2 | UK009A | 2024-09-17T12:03:11.594Z | 2024-09-22T12:17:47.949Z |
5099588 | 5099588 | 20240913213756_QKdb2 | UK009L | 2024-09-17T12:03:11.594Z | 2024-09-22T12:17:47.949Z |
5099589 | 5099589 | 20240913213756_QKdb2 | UK009V | 2024-09-17T12:03:11.594Z | 2024-09-22T12:17:47.949Z |
5099590 | 5099590 | 20240913213756_QKdb2 | UK00B1 | 2024-09-17T12:03:11.594Z | 2024-09-22T12:17:47.949Z |
5099591 | 5099591 | 20240913213756_QKdb2 | UK00B2 | 2024-09-17T12:03:11.594Z | 2024-09-22T12:17:47.949Z |
5099577 | 5099577 | 20240913213756_QKdb2 | BE000H | 2024-09-17T12:03:11.572Z | 2024-09-22T12:17:47.949Z |
5099578 | 5099578 | 20240913213756_QKdb2 | UK000F | 2024-09-17T12:03:11.572Z | 2024-09-22T12:17:47.949Z |
5099579 | 5099579 | 20240913213756_QKdb2 | UK000S | 2024-09-17T12:03:11.572Z | 2024-09-22T12:17:47.949Z |
5099580 | 5099580 | 20240913213756_QKdb2 | UK002W | 2024-09-17T12:03:11.572Z | 2024-09-22T12:17:47.949Z |
5099581 | 5099581 | 20240913213756_QKdb2 | UK003D | 2024-09-17T12:03:11.572Z | 2024-09-22T12:17:47.949Z |
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);