participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20220806013309_LyfRE" 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 |
---|---|---|---|---|---|
1484604 | 1484604 | 20220806013309_LyfRE | UK000F | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484605 | 1484605 | 20220806013309_LyfRE | UK000S | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484606 | 1484606 | 20220806013309_LyfRE | UK001Y | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484607 | 1484607 | 20220806013309_LyfRE | UK0026 | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484608 | 1484608 | 20220806013309_LyfRE | UK002C | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484609 | 1484609 | 20220806013309_LyfRE | UK002F | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484610 | 1484610 | 20220806013309_LyfRE | UK002W | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484611 | 1484611 | 20220806013309_LyfRE | UK0034 | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484612 | 1484612 | 20220806013309_LyfRE | UK0035 | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484613 | 1484613 | 20220806013309_LyfRE | UK003A | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484614 | 1484614 | 20220806013309_LyfRE | UK003G | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484615 | 1484615 | 20220806013309_LyfRE | UK003S | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484616 | 1484616 | 20220806013309_LyfRE | UK0041 | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484617 | 1484617 | 20220806013309_LyfRE | UK005F | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484618 | 1484618 | 20220806013309_LyfRE | UK0062 | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
1484619 | 1484619 | 20220806013309_LyfRE | UK007E | 2024-01-05T23:48:40.332Z | 2024-01-05T23:48:40.332Z |
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);