participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
17 rows where meteor_unique_trajectory_identifier = "20240914204238_hSIkr" 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 |
---|---|---|---|---|---|
5111482 | 5111482 | 20240914204238_hSIkr | UK001L | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111483 | 5111483 | 20240914204238_hSIkr | UK002F | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111484 | 5111484 | 20240914204238_hSIkr | UK0032 | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111485 | 5111485 | 20240914204238_hSIkr | UK0035 | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111486 | 5111486 | 20240914204238_hSIkr | UK003X | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111487 | 5111487 | 20240914204238_hSIkr | UK004D | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111488 | 5111488 | 20240914204238_hSIkr | UK0050 | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111489 | 5111489 | 20240914204238_hSIkr | UK006L | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111490 | 5111490 | 20240914204238_hSIkr | UK0070 | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111491 | 5111491 | 20240914204238_hSIkr | UK0098 | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111492 | 5111492 | 20240914204238_hSIkr | UK0099 | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111493 | 5111493 | 20240914204238_hSIkr | UK009L | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111494 | 5111494 | 20240914204238_hSIkr | UK00AE | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111495 | 5111495 | 20240914204238_hSIkr | UK00AL | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111496 | 5111496 | 20240914204238_hSIkr | UK00AT | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111497 | 5111497 | 20240914204238_hSIkr | UK00BF | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
5111498 | 5111498 | 20240914204238_hSIkr | UK00CC | 2024-09-18T12:01:59.530Z | 2024-09-23T12:15:57.269Z |
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);