participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20240801224910_Zkzoi" 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 |
---|---|---|---|---|---|
4783795 | 4783795 | 20240801224910_Zkzoi | UK0025 | 2024-08-10T12:14:17.298Z | 2024-08-11T12:14:17.449Z |
4783796 | 4783796 | 20240801224910_Zkzoi | UK006H | 2024-08-10T12:14:17.298Z | 2024-08-11T12:14:17.449Z |
4783797 | 4783797 | 20240801224910_Zkzoi | UK008E | 2024-08-10T12:14:17.298Z | 2024-08-11T12:14:17.449Z |
4783798 | 4783798 | 20240801224910_Zkzoi | UK008Q | 2024-08-10T12:14:17.298Z | 2024-08-11T12:14:17.449Z |
4783799 | 4783799 | 20240801224910_Zkzoi | UK00AB | 2024-08-10T12:14:17.298Z | 2024-08-11T12:14:17.449Z |
4783800 | 4783800 | 20240801224910_Zkzoi | UK00AP | 2024-08-10T12:14:17.298Z | 2024-08-11T12:14:17.449Z |
4783801 | 4783801 | 20240801224910_Zkzoi | UK00B5 | 2024-08-10T12:14:17.298Z | 2024-08-11T12:14:17.449Z |
4783802 | 4783802 | 20240801224910_Zkzoi | UK00CE | 2024-08-10T12:14:17.298Z | 2024-08-11T12:14:17.449Z |
4783793 | 4783793 | 20240801224910_Zkzoi | UK000H | 2024-08-10T12:14:17.280Z | 2024-08-11T12:14:17.449Z |
4783794 | 4783794 | 20240801224910_Zkzoi | UK001E | 2024-08-10T12:14:17.280Z | 2024-08-11T12:14:17.449Z |
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);