participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20231111043509_tqnbB" 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 |
---|---|---|---|---|---|
3371686 | 3371686 | 20231111043509_tqnbB | UK002X | 2024-01-06T00:04:15.429Z | 2024-01-06T00:04:15.429Z |
3371687 | 3371687 | 20231111043509_tqnbB | UK002Z | 2024-01-06T00:04:15.429Z | 2024-01-06T00:04:15.429Z |
3371688 | 3371688 | 20231111043509_tqnbB | UK0030 | 2024-01-06T00:04:15.429Z | 2024-01-06T00:04:15.429Z |
3371689 | 3371689 | 20231111043509_tqnbB | UK0032 | 2024-01-06T00:04:15.429Z | 2024-01-06T00:04:15.429Z |
3371690 | 3371690 | 20231111043509_tqnbB | UK003B | 2024-01-06T00:04:15.429Z | 2024-01-06T00:04:15.429Z |
3371691 | 3371691 | 20231111043509_tqnbB | UK004V | 2024-01-06T00:04:15.429Z | 2024-01-06T00:04:15.429Z |
3371692 | 3371692 | 20231111043509_tqnbB | UK005H | 2024-01-06T00:04:15.429Z | 2024-01-06T00:04:15.429Z |
3371693 | 3371693 | 20231111043509_tqnbB | UK006E | 2024-01-06T00:04:15.429Z | 2024-01-06T00:04:15.429Z |
3371694 | 3371694 | 20231111043509_tqnbB | UK006T | 2024-01-06T00:04:15.429Z | 2024-01-06T00:04:15.429Z |
3371695 | 3371695 | 20231111043509_tqnbB | UK006Y | 2024-01-06T00:04:15.429Z | 2024-01-06T00:04:15.429Z |
3371696 | 3371696 | 20231111043509_tqnbB | UK0075 | 2024-01-06T00:04:15.429Z | 2024-01-06T00:04:15.429Z |
3371697 | 3371697 | 20231111043509_tqnbB | UK0087 | 2024-01-06T00:04:15.429Z | 2024-01-06T00:04:15.429Z |
3371698 | 3371698 | 20231111043509_tqnbB | UK0088 | 2024-01-06T00:04:15.429Z | 2024-01-06T00:04:15.429Z |
3371699 | 3371699 | 20231111043509_tqnbB | UK008G | 2024-01-06T00:04:15.429Z | 2024-01-06T00:04:15.429Z |
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);