participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20231022031419_F8RPN" 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 |
---|---|---|---|---|---|
3236795 | 3236795 | 20231022031419_F8RPN | UK005E | 2024-01-06T00:03:15.639Z | 2024-01-06T00:03:15.639Z |
3236796 | 3236796 | 20231022031419_F8RPN | UK006P | 2024-01-06T00:03:15.639Z | 2024-01-06T00:03:15.639Z |
3236797 | 3236797 | 20231022031419_F8RPN | UK0075 | 2024-01-06T00:03:15.639Z | 2024-01-06T00:03:15.639Z |
3236798 | 3236798 | 20231022031419_F8RPN | UK007B | 2024-01-06T00:03:15.639Z | 2024-01-06T00:03:15.639Z |
3236799 | 3236799 | 20231022031419_F8RPN | UK007C | 2024-01-06T00:03:15.639Z | 2024-01-06T00:03:15.639Z |
3236800 | 3236800 | 20231022031419_F8RPN | UK007N | 2024-01-06T00:03:15.639Z | 2024-01-06T00:03:15.639Z |
3236801 | 3236801 | 20231022031419_F8RPN | UK007R | 2024-01-06T00:03:15.639Z | 2024-01-06T00:03:15.639Z |
3236802 | 3236802 | 20231022031419_F8RPN | UK0099 | 2024-01-06T00:03:15.639Z | 2024-01-06T00:03:15.639Z |
3236803 | 3236803 | 20231022031419_F8RPN | UK009L | 2024-01-06T00:03:15.639Z | 2024-01-06T00:03:15.639Z |
3236804 | 3236804 | 20231022031419_F8RPN | UK00A0 | 2024-01-06T00:03:15.639Z | 2024-01-06T00:03:15.639Z |
3236805 | 3236805 | 20231022031419_F8RPN | UK00AE | 2024-01-06T00:03:15.639Z | 2024-01-06T00:03:15.639Z |
3236806 | 3236806 | 20231022031419_F8RPN | UK00B2 | 2024-01-06T00:03:15.639Z | 2024-01-06T00:03:15.639Z |
3236791 | 3236791 | 20231022031419_F8RPN | UK000S | 2024-01-06T00:03:15.638Z | 2024-01-06T00:03:15.638Z |
3236792 | 3236792 | 20231022031419_F8RPN | UK001Y | 2024-01-06T00:03:15.638Z | 2024-01-06T00:03:15.638Z |
3236793 | 3236793 | 20231022031419_F8RPN | UK002F | 2024-01-06T00:03:15.638Z | 2024-01-06T00:03:15.638Z |
3236794 | 3236794 | 20231022031419_F8RPN | UK003X | 2024-01-06T00:03:15.638Z | 2024-01-06T00:03:15.638Z |
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);