participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20230819234151_A18Kf" 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 |
---|---|---|---|---|---|
2857176 | 2857176 | 20230819234151_A18Kf | UK0002 | 2024-01-06T00:01:03.573Z | 2024-01-06T00:01:03.573Z |
2857177 | 2857177 | 20230819234151_A18Kf | UK0006 | 2024-01-06T00:01:03.573Z | 2024-01-06T00:01:03.573Z |
2857178 | 2857178 | 20230819234151_A18Kf | UK001S | 2024-01-06T00:01:03.573Z | 2024-01-06T00:01:03.573Z |
2857179 | 2857179 | 20230819234151_A18Kf | UK0020 | 2024-01-06T00:01:03.573Z | 2024-01-06T00:01:03.573Z |
2857180 | 2857180 | 20230819234151_A18Kf | UK003C | 2024-01-06T00:01:03.573Z | 2024-01-06T00:01:03.573Z |
2857181 | 2857181 | 20230819234151_A18Kf | UK007L | 2024-01-06T00:01:03.573Z | 2024-01-06T00:01:03.573Z |
2857182 | 2857182 | 20230819234151_A18Kf | UK008B | 2024-01-06T00:01:03.573Z | 2024-01-06T00:01:03.573Z |
2857183 | 2857183 | 20230819234151_A18Kf | UK008W | 2024-01-06T00:01:03.573Z | 2024-01-06T00:01:03.573Z |
2857184 | 2857184 | 20230819234151_A18Kf | UK008X | 2024-01-06T00:01:03.573Z | 2024-01-06T00:01:03.573Z |
2857185 | 2857185 | 20230819234151_A18Kf | UK009W | 2024-01-06T00:01:03.573Z | 2024-01-06T00:01:03.573Z |
2857186 | 2857186 | 20230819234151_A18Kf | UK00A5 | 2024-01-06T00:01:03.573Z | 2024-01-06T00:01:03.573Z |
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);