participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20241122043044_BetWW" 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 |
---|---|---|---|---|---|
5573638 | 5573638 | 20241122043044_BetWW | UK009S | 2024-11-23T14:01:10.451Z | 2024-11-26T14:22:07.266Z |
5573639 | 5573639 | 20241122043044_BetWW | UK00AE | 2024-11-23T14:01:10.451Z | 2024-11-26T14:22:07.266Z |
5573640 | 5573640 | 20241122043044_BetWW | UK00B0 | 2024-11-23T14:01:10.451Z | 2024-11-26T14:22:07.266Z |
5573641 | 5573641 | 20241122043044_BetWW | UK00BL | 2024-11-23T14:01:10.451Z | 2024-11-26T14:22:07.266Z |
5573628 | 5573628 | 20241122043044_BetWW | IE0004 | 2024-11-23T14:01:10.437Z | 2024-11-26T14:22:07.266Z |
5573629 | 5573629 | 20241122043044_BetWW | UK000U | 2024-11-23T14:01:10.437Z | 2024-11-26T14:22:07.266Z |
5573630 | 5573630 | 20241122043044_BetWW | UK001Z | 2024-11-23T14:01:10.437Z | 2024-11-26T14:22:07.266Z |
5573631 | 5573631 | 20241122043044_BetWW | UK002Z | 2024-11-23T14:01:10.437Z | 2024-11-26T14:22:07.266Z |
5573632 | 5573632 | 20241122043044_BetWW | UK0031 | 2024-11-23T14:01:10.437Z | 2024-11-26T14:22:07.266Z |
5573633 | 5573633 | 20241122043044_BetWW | UK008J | 2024-11-23T14:01:10.437Z | 2024-11-26T14:22:07.266Z |
5573634 | 5573634 | 20241122043044_BetWW | UK0090 | 2024-11-23T14:01:10.437Z | 2024-11-26T14:22:07.266Z |
5573635 | 5573635 | 20241122043044_BetWW | UK0098 | 2024-11-23T14:01:10.437Z | 2024-11-26T14:22:07.266Z |
5573636 | 5573636 | 20241122043044_BetWW | UK009K | 2024-11-23T14:01:10.437Z | 2024-11-26T14:22:07.266Z |
5573637 | 5573637 | 20241122043044_BetWW | UK009P | 2024-11-23T14:01:10.437Z | 2024-11-26T14:22:07.266Z |
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);