participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
19 rows where meteor_unique_trajectory_identifier = "20231022181501_VpH0z" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
3246735 | 3246735 | 20231022181501_VpH0z | UK006Y | 2024-01-06T00:03:17.889Z | 2024-01-06T00:03:17.889Z |
3246736 | 3246736 | 20231022181501_VpH0z | UK007C | 2024-01-06T00:03:17.889Z | 2024-01-06T00:03:17.889Z |
3246737 | 3246737 | 20231022181501_VpH0z | UK007R | 2024-01-06T00:03:17.889Z | 2024-01-06T00:03:17.889Z |
3246738 | 3246738 | 20231022181501_VpH0z | UK0099 | 2024-01-06T00:03:17.889Z | 2024-01-06T00:03:17.889Z |
3246739 | 3246739 | 20231022181501_VpH0z | UK009D | 2024-01-06T00:03:17.889Z | 2024-01-06T00:03:17.889Z |
3246740 | 3246740 | 20231022181501_VpH0z | UK009L | 2024-01-06T00:03:17.889Z | 2024-01-06T00:03:17.889Z |
3246741 | 3246741 | 20231022181501_VpH0z | UK00AE | 2024-01-06T00:03:17.889Z | 2024-01-06T00:03:17.889Z |
3246742 | 3246742 | 20231022181501_VpH0z | UK00AG | 2024-01-06T00:03:17.889Z | 2024-01-06T00:03:17.889Z |
3246743 | 3246743 | 20231022181501_VpH0z | UK00B0 | 2024-01-06T00:03:17.889Z | 2024-01-06T00:03:17.889Z |
3246744 | 3246744 | 20231022181501_VpH0z | UK00B1 | 2024-01-06T00:03:17.889Z | 2024-01-06T00:03:17.889Z |
3246726 | 3246726 | 20231022181501_VpH0z | UK000S | 2024-01-06T00:03:17.888Z | 2024-01-06T00:03:17.888Z |
3246727 | 3246727 | 20231022181501_VpH0z | UK001Y | 2024-01-06T00:03:17.888Z | 2024-01-06T00:03:17.888Z |
3246728 | 3246728 | 20231022181501_VpH0z | UK001Z | 2024-01-06T00:03:17.888Z | 2024-01-06T00:03:17.888Z |
3246729 | 3246729 | 20231022181501_VpH0z | UK0027 | 2024-01-06T00:03:17.888Z | 2024-01-06T00:03:17.888Z |
3246730 | 3246730 | 20231022181501_VpH0z | UK002F | 2024-01-06T00:03:17.888Z | 2024-01-06T00:03:17.888Z |
3246731 | 3246731 | 20231022181501_VpH0z | UK002U | 2024-01-06T00:03:17.888Z | 2024-01-06T00:03:17.888Z |
3246732 | 3246732 | 20231022181501_VpH0z | UK002X | 2024-01-06T00:03:17.888Z | 2024-01-06T00:03:17.888Z |
3246733 | 3246733 | 20231022181501_VpH0z | UK0031 | 2024-01-06T00:03:17.888Z | 2024-01-06T00:03:17.888Z |
3246734 | 3246734 | 20231022181501_VpH0z | UK004N | 2024-01-06T00:03:17.888Z | 2024-01-06T00:03:17.888Z |
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);