participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20240119044630_iGAqU" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
3866025 | 3866025 | 20240119044630_iGAqU | UK00BA | 2024-01-22T14:06:04.305Z | 2024-01-27T14:20:09.461Z |
3866011 | 3866011 | 20240119044630_iGAqU | UK000S | 2024-01-22T14:06:04.304Z | 2024-01-27T14:20:09.461Z |
3866012 | 3866012 | 20240119044630_iGAqU | UK001Z | 2024-01-22T14:06:04.304Z | 2024-01-27T14:20:09.461Z |
3866013 | 3866013 | 20240119044630_iGAqU | UK0027 | 2024-01-22T14:06:04.304Z | 2024-01-27T14:20:09.461Z |
3866014 | 3866014 | 20240119044630_iGAqU | UK002G | 2024-01-22T14:06:04.304Z | 2024-01-27T14:20:09.461Z |
3866015 | 3866015 | 20240119044630_iGAqU | UK0031 | 2024-01-22T14:06:04.304Z | 2024-01-27T14:20:09.461Z |
3866016 | 3866016 | 20240119044630_iGAqU | UK003L | 2024-01-22T14:06:04.304Z | 2024-01-27T14:20:09.461Z |
3866017 | 3866017 | 20240119044630_iGAqU | UK007P | 2024-01-22T14:06:04.304Z | 2024-01-27T14:20:09.461Z |
3866018 | 3866018 | 20240119044630_iGAqU | UK009G | 2024-01-22T14:06:04.304Z | 2024-01-27T14:20:09.461Z |
3866019 | 3866019 | 20240119044630_iGAqU | UK009K | 2024-01-22T14:06:04.304Z | 2024-01-27T14:20:09.461Z |
3866020 | 3866020 | 20240119044630_iGAqU | UK009T | 2024-01-22T14:06:04.304Z | 2024-01-27T14:20:09.461Z |
3866021 | 3866021 | 20240119044630_iGAqU | UK00AE | 2024-01-22T14:06:04.304Z | 2024-01-27T14:20:09.461Z |
3866022 | 3866022 | 20240119044630_iGAqU | UK00B0 | 2024-01-22T14:06:04.304Z | 2024-01-27T14:20:09.461Z |
3866023 | 3866023 | 20240119044630_iGAqU | UK00B2 | 2024-01-22T14:06:04.304Z | 2024-01-27T14:20:09.461Z |
3866024 | 3866024 | 20240119044630_iGAqU | UK00B6 | 2024-01-22T14:06:04.304Z | 2024-01-27T14:20:09.461Z |
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);