participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
19 rows where meteor_unique_trajectory_identifier = "20240303050302_zXaeI" 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 |
---|---|---|---|---|---|
4021385 | 4021385 | 20240303050302_zXaeI | UK000S | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021386 | 4021386 | 20240303050302_zXaeI | UK001Z | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021387 | 4021387 | 20240303050302_zXaeI | UK0027 | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021388 | 4021388 | 20240303050302_zXaeI | UK0030 | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021389 | 4021389 | 20240303050302_zXaeI | UK0031 | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021390 | 4021390 | 20240303050302_zXaeI | UK003F | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021391 | 4021391 | 20240303050302_zXaeI | UK005S | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021392 | 4021392 | 20240303050302_zXaeI | UK007M | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021393 | 4021393 | 20240303050302_zXaeI | UK007P | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021394 | 4021394 | 20240303050302_zXaeI | UK0083 | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021395 | 4021395 | 20240303050302_zXaeI | UK008J | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021396 | 4021396 | 20240303050302_zXaeI | UK009K | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021397 | 4021397 | 20240303050302_zXaeI | UK009P | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021398 | 4021398 | 20240303050302_zXaeI | UK00AE | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021399 | 4021399 | 20240303050302_zXaeI | UK00AT | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021400 | 4021400 | 20240303050302_zXaeI | UK00B0 | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021401 | 4021401 | 20240303050302_zXaeI | UK00B6 | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021402 | 4021402 | 20240303050302_zXaeI | UK00BA | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
4021403 | 4021403 | 20240303050302_zXaeI | UK00C1 | 2024-03-04T14:07:09.548Z | 2024-03-11T12:18:42.518Z |
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);