participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20241124125810_chzFz" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
5595900 | 5595900 | 20241124125810_chzFz | NZ002H | 2024-11-25T14:09:08.146Z | 2024-11-25T14:09:08.146Z |
5595901 | 5595901 | 20241124125810_chzFz | NZ002Z | 2024-11-25T14:09:08.146Z | 2024-11-25T14:09:08.146Z |
5595902 | 5595902 | 20241124125810_chzFz | NZ0034 | 2024-11-25T14:09:08.146Z | 2024-11-25T14:09:08.146Z |
5595903 | 5595903 | 20241124125810_chzFz | NZ0036 | 2024-11-25T14:09:08.146Z | 2024-11-25T14:09:08.146Z |
5595904 | 5595904 | 20241124125810_chzFz | NZ003H | 2024-11-25T14:09:08.146Z | 2024-11-25T14:09:08.146Z |
5595905 | 5595905 | 20241124125810_chzFz | NZ003X | 2024-11-25T14:09:08.146Z | 2024-11-25T14:09:08.146Z |
5595906 | 5595906 | 20241124125810_chzFz | NZ003Y | 2024-11-25T14:09:08.146Z | 2024-11-25T14:09:08.146Z |
5595907 | 5595907 | 20241124125810_chzFz | NZ0046 | 2024-11-25T14:09:08.146Z | 2024-11-25T14:09:08.146Z |
5595895 | 5595895 | 20241124125810_chzFz | NZ0017 | 2024-11-25T14:09:07.327Z | 2024-11-25T14:09:07.327Z |
5595896 | 5595896 | 20241124125810_chzFz | NZ001L | 2024-11-25T14:09:07.327Z | 2024-11-25T14:09:07.327Z |
5595897 | 5595897 | 20241124125810_chzFz | NZ001S | 2024-11-25T14:09:07.327Z | 2024-11-25T14:09:07.327Z |
5595898 | 5595898 | 20241124125810_chzFz | NZ001U | 2024-11-25T14:09:07.327Z | 2024-11-25T14:09:07.327Z |
5595899 | 5595899 | 20241124125810_chzFz | NZ0024 | 2024-11-25T14:09:07.327Z | 2024-11-25T14:09:07.327Z |
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);