participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
19 rows where meteor_unique_trajectory_identifier = "20230819215857_e3BiP" 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 |
---|---|---|---|---|---|
2855755 | 2855755 | 20230819215857_e3BiP | UK0002 | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855756 | 2855756 | 20230819215857_e3BiP | UK001L | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855757 | 2855757 | 20230819215857_e3BiP | UK001Q | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855758 | 2855758 | 20230819215857_e3BiP | UK001V | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855759 | 2855759 | 20230819215857_e3BiP | UK0027 | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855760 | 2855760 | 20230819215857_e3BiP | UK002Z | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855761 | 2855761 | 20230819215857_e3BiP | UK0031 | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855762 | 2855762 | 20230819215857_e3BiP | UK0032 | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855763 | 2855763 | 20230819215857_e3BiP | UK0042 | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855764 | 2855764 | 20230819215857_e3BiP | UK004D | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855765 | 2855765 | 20230819215857_e3BiP | UK0072 | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855766 | 2855766 | 20230819215857_e3BiP | UK007A | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855767 | 2855767 | 20230819215857_e3BiP | UK0083 | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855768 | 2855768 | 20230819215857_e3BiP | UK008S | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855769 | 2855769 | 20230819215857_e3BiP | UK008U | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855770 | 2855770 | 20230819215857_e3BiP | UK009D | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855771 | 2855771 | 20230819215857_e3BiP | UK009P | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855772 | 2855772 | 20230819215857_e3BiP | UK00AE | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
2855773 | 2855773 | 20230819215857_e3BiP | UK00AJ | 2024-01-06T00:01:03.460Z | 2024-01-06T00:01:03.460Z |
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);