participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20240119034210_osB3Y" 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 |
---|---|---|---|---|---|
3864623 | 3864623 | 20240119034210_osB3Y | UK001L | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864624 | 3864624 | 20240119034210_osB3Y | UK001N | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864625 | 3864625 | 20240119034210_osB3Y | UK001Q | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864626 | 3864626 | 20240119034210_osB3Y | UK001V | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864627 | 3864627 | 20240119034210_osB3Y | UK003V | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864628 | 3864628 | 20240119034210_osB3Y | UK003Y | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864629 | 3864629 | 20240119034210_osB3Y | UK0042 | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864630 | 3864630 | 20240119034210_osB3Y | UK004D | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864631 | 3864631 | 20240119034210_osB3Y | UK004M | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864632 | 3864632 | 20240119034210_osB3Y | UK0050 | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864633 | 3864633 | 20240119034210_osB3Y | UK0052 | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864634 | 3864634 | 20240119034210_osB3Y | UK0072 | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864635 | 3864635 | 20240119034210_osB3Y | UK008S | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864636 | 3864636 | 20240119034210_osB3Y | UK0090 | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864637 | 3864637 | 20240119034210_osB3Y | UK00AQ | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
3864638 | 3864638 | 20240119034210_osB3Y | UK00B0 | 2024-01-22T14:04:43.679Z | 2024-01-27T14:19:50.869Z |
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);