participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20230820011322_DJBpA" 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 |
---|---|---|---|---|---|
2858771 | 2858771 | 20230820011322_DJBpA | UK0002 | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858772 | 2858772 | 20230820011322_DJBpA | UK001S | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858773 | 2858773 | 20230820011322_DJBpA | UK0026 | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858774 | 2858774 | 20230820011322_DJBpA | UK0035 | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858775 | 2858775 | 20230820011322_DJBpA | UK004G | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858776 | 2858776 | 20230820011322_DJBpA | UK005S | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858777 | 2858777 | 20230820011322_DJBpA | UK005V | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858778 | 2858778 | 20230820011322_DJBpA | UK0060 | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858779 | 2858779 | 20230820011322_DJBpA | UK0070 | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858780 | 2858780 | 20230820011322_DJBpA | UK007A | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858781 | 2858781 | 20230820011322_DJBpA | UK007L | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858782 | 2858782 | 20230820011322_DJBpA | UK008B | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858783 | 2858783 | 20230820011322_DJBpA | UK008W | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858784 | 2858784 | 20230820011322_DJBpA | UK008X | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858785 | 2858785 | 20230820011322_DJBpA | UK0092 | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
2858786 | 2858786 | 20230820011322_DJBpA | UK009D | 2024-01-06T00:01:03.705Z | 2024-01-06T00:01:03.705Z |
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);