participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240708002621_UMJVp" 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 |
---|---|---|---|---|---|
4587595 | 4587595 | 20240708002621_UMJVp | UK003N | 2024-07-10T12:00:51.575Z | 2024-07-16T12:09:05.979Z |
4587596 | 4587596 | 20240708002621_UMJVp | UK0045 | 2024-07-10T12:00:51.575Z | 2024-07-16T12:09:05.979Z |
4587597 | 4587597 | 20240708002621_UMJVp | UK005P | 2024-07-10T12:00:51.575Z | 2024-07-16T12:09:05.979Z |
4587598 | 4587598 | 20240708002621_UMJVp | UK0078 | 2024-07-10T12:00:51.575Z | 2024-07-16T12:09:05.979Z |
4587599 | 4587599 | 20240708002621_UMJVp | UK0079 | 2024-07-10T12:00:51.575Z | 2024-07-16T12:09:05.979Z |
4587600 | 4587600 | 20240708002621_UMJVp | UK008T | 2024-07-10T12:00:51.575Z | 2024-07-16T12:09:05.979Z |
4587601 | 4587601 | 20240708002621_UMJVp | UK009A | 2024-07-10T12:00:51.575Z | 2024-07-16T12:09:05.979Z |
4587602 | 4587602 | 20240708002621_UMJVp | UK009X | 2024-07-10T12:00:51.575Z | 2024-07-16T12:09:05.979Z |
4587603 | 4587603 | 20240708002621_UMJVp | UK00A6 | 2024-07-10T12:00:51.575Z | 2024-07-16T12:09:05.979Z |
4587604 | 4587604 | 20240708002621_UMJVp | UK00AF | 2024-07-10T12:00:51.575Z | 2024-07-16T12:09:05.979Z |
4587605 | 4587605 | 20240708002621_UMJVp | UK00BC | 2024-07-10T12:00:51.575Z | 2024-07-16T12:09:05.979Z |
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);