participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240110021624_ayngI" 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 |
---|---|---|---|---|---|
3800837 | 3800837 | 20240110021624_ayngI | UK0006 | 2024-01-13T14:20:49.223Z | 2024-01-18T14:26:09.865Z |
3800838 | 3800838 | 20240110021624_ayngI | UK000S | 2024-01-13T14:20:49.223Z | 2024-01-18T14:26:09.865Z |
3800839 | 3800839 | 20240110021624_ayngI | UK001P | 2024-01-13T14:20:49.223Z | 2024-01-18T14:26:09.865Z |
3800840 | 3800840 | 20240110021624_ayngI | UK0027 | 2024-01-13T14:20:49.223Z | 2024-01-18T14:26:09.865Z |
3800841 | 3800841 | 20240110021624_ayngI | UK003L | 2024-01-13T14:20:49.223Z | 2024-01-18T14:26:09.865Z |
3800842 | 3800842 | 20240110021624_ayngI | UK0049 | 2024-01-13T14:20:49.223Z | 2024-01-18T14:26:09.865Z |
3800843 | 3800843 | 20240110021624_ayngI | UK008X | 2024-01-13T14:20:49.223Z | 2024-01-18T14:26:09.865Z |
3800844 | 3800844 | 20240110021624_ayngI | UK009K | 2024-01-13T14:20:49.223Z | 2024-01-18T14:26:09.865Z |
3800845 | 3800845 | 20240110021624_ayngI | UK009W | 2024-01-13T14:20:49.223Z | 2024-01-18T14:26:09.865Z |
3800846 | 3800846 | 20240110021624_ayngI | UK00AE | 2024-01-13T14:20:49.223Z | 2024-01-18T14:26:09.865Z |
3800847 | 3800847 | 20240110021624_ayngI | UK00B2 | 2024-01-13T14:20:49.223Z | 2024-01-18T14:26:09.865Z |
3800848 | 3800848 | 20240110021624_ayngI | UK00B6 | 2024-01-13T14:20:49.223Z | 2024-01-18T14:26:09.865Z |
3800849 | 3800849 | 20240110021624_ayngI | UK00BA | 2024-01-13T14:20:49.223Z | 2024-01-18T14:26:09.865Z |
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);