participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240811211955_VqjUc" 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 |
---|---|---|---|---|---|
4965801 | 4965801 | 20240811211955_VqjUc | UK000S | 2024-09-04T12:07:08.348Z | 2024-09-06T12:06:06.696Z |
4965802 | 4965802 | 20240811211955_VqjUc | UK003L | 2024-09-04T12:07:08.348Z | 2024-09-06T12:06:06.696Z |
4965803 | 4965803 | 20240811211955_VqjUc | UK003X | 2024-09-04T12:07:08.348Z | 2024-09-06T12:06:06.696Z |
4965804 | 4965804 | 20240811211955_VqjUc | UK006B | 2024-09-04T12:07:08.348Z | 2024-09-06T12:06:06.696Z |
4965805 | 4965805 | 20240811211955_VqjUc | UK007R | 2024-09-04T12:07:08.348Z | 2024-09-06T12:06:06.696Z |
4965806 | 4965806 | 20240811211955_VqjUc | UK009G | 2024-09-04T12:07:08.348Z | 2024-09-06T12:06:06.696Z |
4965807 | 4965807 | 20240811211955_VqjUc | UK009J | 2024-09-04T12:07:08.348Z | 2024-09-06T12:06:06.696Z |
4965808 | 4965808 | 20240811211955_VqjUc | UK009L | 2024-09-04T12:07:08.348Z | 2024-09-06T12:06:06.696Z |
4965809 | 4965809 | 20240811211955_VqjUc | UK00A5 | 2024-09-04T12:07:08.348Z | 2024-09-06T12:06:06.696Z |
4965810 | 4965810 | 20240811211955_VqjUc | UK00AG | 2024-09-04T12:07:08.348Z | 2024-09-06T12:06:06.696Z |
4965811 | 4965811 | 20240811211955_VqjUc | UK00B1 | 2024-09-04T12:07:08.348Z | 2024-09-06T12:06:06.696Z |
4965812 | 4965812 | 20240811211955_VqjUc | UK00B2 | 2024-09-04T12:07:08.348Z | 2024-09-06T12:06:06.696Z |
4965813 | 4965813 | 20240811211955_VqjUc | UK00B6 | 2024-09-04T12:07:08.348Z | 2024-09-06T12:06:06.696Z |
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);