participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240915011351_hmlct" 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 |
---|---|---|---|---|---|
5113784 | 5113784 | 20240915011351_hmlct | BE000C | 2024-09-18T12:04:50.677Z | 2024-09-23T12:16:11.353Z |
5113785 | 5113785 | 20240915011351_hmlct | BE000H | 2024-09-18T12:04:50.677Z | 2024-09-23T12:16:11.353Z |
5113786 | 5113786 | 20240915011351_hmlct | BE000P | 2024-09-18T12:04:50.677Z | 2024-09-23T12:16:11.353Z |
5113787 | 5113787 | 20240915011351_hmlct | UK003N | 2024-09-18T12:04:50.677Z | 2024-09-23T12:16:11.353Z |
5113788 | 5113788 | 20240915011351_hmlct | UK0045 | 2024-09-18T12:04:50.677Z | 2024-09-23T12:16:11.353Z |
5113789 | 5113789 | 20240915011351_hmlct | UK004C | 2024-09-18T12:04:50.677Z | 2024-09-23T12:16:11.353Z |
5113790 | 5113790 | 20240915011351_hmlct | UK005P | 2024-09-18T12:04:50.677Z | 2024-09-23T12:16:11.353Z |
5113791 | 5113791 | 20240915011351_hmlct | UK006D | 2024-09-18T12:04:50.677Z | 2024-09-23T12:16:11.353Z |
5113792 | 5113792 | 20240915011351_hmlct | UK006U | 2024-09-18T12:04:50.677Z | 2024-09-23T12:16:11.353Z |
5113793 | 5113793 | 20240915011351_hmlct | UK007H | 2024-09-18T12:04:50.677Z | 2024-09-23T12:16:11.353Z |
5113794 | 5113794 | 20240915011351_hmlct | UK009X | 2024-09-18T12:04:50.677Z | 2024-09-23T12:16:11.353Z |
5113795 | 5113795 | 20240915011351_hmlct | UK00AF | 2024-09-18T12:04:50.677Z | 2024-09-23T12:16:11.353Z |
5113796 | 5113796 | 20240915011351_hmlct | UK00B1 | 2024-09-18T12:04:50.677Z | 2024-09-23T12:16:11.353Z |
5113797 | 5113797 | 20240915011351_hmlct | UK00CA | 2024-09-18T12:04:50.677Z | 2024-09-23T12:16:11.353Z |
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);