participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240421215428_gO9tn" 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 |
---|---|---|---|---|---|
4230348 | 4230348 | 20240421215428_gO9tn | UK0006 | 2024-04-23T12:09:15.545Z | 2024-04-29T12:18:54.817Z |
4230349 | 4230349 | 20240421215428_gO9tn | UK000S | 2024-04-23T12:09:15.545Z | 2024-04-29T12:18:54.817Z |
4230350 | 4230350 | 20240421215428_gO9tn | UK001E | 2024-04-23T12:09:15.545Z | 2024-04-29T12:18:54.817Z |
4230351 | 4230351 | 20240421215428_gO9tn | UK001Z | 2024-04-23T12:09:15.545Z | 2024-04-29T12:18:54.817Z |
4230352 | 4230352 | 20240421215428_gO9tn | UK002J | 2024-04-23T12:09:15.545Z | 2024-04-29T12:18:54.817Z |
4230353 | 4230353 | 20240421215428_gO9tn | UK003Z | 2024-04-23T12:09:15.545Z | 2024-04-29T12:18:54.817Z |
4230354 | 4230354 | 20240421215428_gO9tn | UK007B | 2024-04-23T12:09:15.545Z | 2024-04-29T12:18:54.817Z |
4230355 | 4230355 | 20240421215428_gO9tn | UK007L | 2024-04-23T12:09:15.545Z | 2024-04-29T12:18:54.817Z |
4230356 | 4230356 | 20240421215428_gO9tn | UK0084 | 2024-04-23T12:09:15.545Z | 2024-04-29T12:18:54.817Z |
4230357 | 4230357 | 20240421215428_gO9tn | UK009G | 2024-04-23T12:09:15.545Z | 2024-04-29T12:18:54.817Z |
4230358 | 4230358 | 20240421215428_gO9tn | UK009W | 2024-04-23T12:09:15.545Z | 2024-04-29T12:18:54.817Z |
4230359 | 4230359 | 20240421215428_gO9tn | UK00A5 | 2024-04-23T12:09:15.545Z | 2024-04-29T12:18:54.817Z |
4230360 | 4230360 | 20240421215428_gO9tn | UK00BW | 2024-04-23T12:09:15.545Z | 2024-04-29T12:18:54.817Z |
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);