participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20240420021423_dEOpS" 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 |
---|---|---|---|---|---|
4219595 | 4219595 | 20240420021423_dEOpS | UK000Z | 2024-04-21T12:02:01.020Z | 2024-04-28T12:21:18.618Z |
4219596 | 4219596 | 20240420021423_dEOpS | UK001H | 2024-04-21T12:02:01.020Z | 2024-04-28T12:21:18.618Z |
4219597 | 4219597 | 20240420021423_dEOpS | UK001R | 2024-04-21T12:02:01.020Z | 2024-04-28T12:21:18.618Z |
4219598 | 4219598 | 20240420021423_dEOpS | UK002Z | 2024-04-21T12:02:01.020Z | 2024-04-28T12:21:18.618Z |
4219599 | 4219599 | 20240420021423_dEOpS | UK003V | 2024-04-21T12:02:01.020Z | 2024-04-28T12:21:18.618Z |
4219600 | 4219600 | 20240420021423_dEOpS | UK004B | 2024-04-21T12:02:01.020Z | 2024-04-28T12:21:18.618Z |
4219601 | 4219601 | 20240420021423_dEOpS | UK005R | 2024-04-21T12:02:01.020Z | 2024-04-28T12:21:18.618Z |
4219602 | 4219602 | 20240420021423_dEOpS | UK006J | 2024-04-21T12:02:01.020Z | 2024-04-28T12:21:18.618Z |
4219603 | 4219603 | 20240420021423_dEOpS | UK006T | 2024-04-21T12:02:01.020Z | 2024-04-28T12:21:18.618Z |
4219604 | 4219604 | 20240420021423_dEOpS | UK0088 | 2024-04-21T12:02:01.020Z | 2024-04-28T12:21:18.618Z |
4219605 | 4219605 | 20240420021423_dEOpS | UK008G | 2024-04-21T12:02:01.020Z | 2024-04-28T12:21:18.618Z |
4219606 | 4219606 | 20240420021423_dEOpS | UK008H | 2024-04-21T12:02:01.020Z | 2024-04-28T12:21:18.618Z |
4219607 | 4219607 | 20240420021423_dEOpS | UK00AA | 2024-04-21T12:02:01.020Z | 2024-04-28T12:21:18.618Z |
4219608 | 4219608 | 20240420021423_dEOpS | UK00AM | 2024-04-21T12:02:01.020Z | 2024-04-28T12:21:18.618Z |
4219594 | 4219594 | 20240420021423_dEOpS | UK000X | 2024-04-21T12:02:01.010Z | 2024-04-28T12:21:18.618Z |
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);