participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20231023004110_HFhjy" 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 |
---|---|---|---|---|---|
3252856 | 3252856 | 20231023004110_HFhjy | UK004B | 2024-01-06T00:03:21.476Z | 2024-01-06T00:03:21.476Z |
3252857 | 3252857 | 20231023004110_HFhjy | UK004D | 2024-01-06T00:03:21.476Z | 2024-01-06T00:03:21.476Z |
3252858 | 3252858 | 20231023004110_HFhjy | UK004V | 2024-01-06T00:03:21.476Z | 2024-01-06T00:03:21.476Z |
3252859 | 3252859 | 20231023004110_HFhjy | UK005H | 2024-01-06T00:03:21.476Z | 2024-01-06T00:03:21.476Z |
3252860 | 3252860 | 20231023004110_HFhjy | UK006C | 2024-01-06T00:03:21.476Z | 2024-01-06T00:03:21.476Z |
3252861 | 3252861 | 20231023004110_HFhjy | UK006T | 2024-01-06T00:03:21.476Z | 2024-01-06T00:03:21.476Z |
3252862 | 3252862 | 20231023004110_HFhjy | UK006V | 2024-01-06T00:03:21.476Z | 2024-01-06T00:03:21.476Z |
3252863 | 3252863 | 20231023004110_HFhjy | UK0087 | 2024-01-06T00:03:21.476Z | 2024-01-06T00:03:21.476Z |
3252864 | 3252864 | 20231023004110_HFhjy | UK0088 | 2024-01-06T00:03:21.476Z | 2024-01-06T00:03:21.476Z |
3252865 | 3252865 | 20231023004110_HFhjy | UK008G | 2024-01-06T00:03:21.476Z | 2024-01-06T00:03:21.476Z |
3252866 | 3252866 | 20231023004110_HFhjy | UK00AE | 2024-01-06T00:03:21.476Z | 2024-01-06T00:03:21.476Z |
3252853 | 3252853 | 20231023004110_HFhjy | UK001Y | 2024-01-06T00:03:21.475Z | 2024-01-06T00:03:21.475Z |
3252854 | 3252854 | 20231023004110_HFhjy | UK002X | 2024-01-06T00:03:21.475Z | 2024-01-06T00:03:21.475Z |
3252855 | 3252855 | 20231023004110_HFhjy | UK0032 | 2024-01-06T00:03:21.475Z | 2024-01-06T00:03:21.475Z |
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);