participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
20 rows where meteor_unique_trajectory_identifier = "20240330003041_JtlCd" 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 |
---|---|---|---|---|---|
4123639 | 4123639 | 20240330003041_JtlCd | UK001L | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123640 | 4123640 | 20240330003041_JtlCd | UK001U | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123641 | 4123641 | 20240330003041_JtlCd | UK001Z | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123642 | 4123642 | 20240330003041_JtlCd | UK003U | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123643 | 4123643 | 20240330003041_JtlCd | UK005L | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123644 | 4123644 | 20240330003041_JtlCd | UK005S | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123645 | 4123645 | 20240330003041_JtlCd | UK007M | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123646 | 4123646 | 20240330003041_JtlCd | UK007P | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123647 | 4123647 | 20240330003041_JtlCd | UK009D | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123648 | 4123648 | 20240330003041_JtlCd | UK009G | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123649 | 4123649 | 20240330003041_JtlCd | UK009K | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123650 | 4123650 | 20240330003041_JtlCd | UK009P | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123651 | 4123651 | 20240330003041_JtlCd | UK00AJ | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123652 | 4123652 | 20240330003041_JtlCd | UK00AT | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123653 | 4123653 | 20240330003041_JtlCd | UK00B0 | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123654 | 4123654 | 20240330003041_JtlCd | UK00B2 | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123655 | 4123655 | 20240330003041_JtlCd | UK00BA | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123656 | 4123656 | 20240330003041_JtlCd | UK00BK | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123657 | 4123657 | 20240330003041_JtlCd | UK00BW | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
4123658 | 4123658 | 20240330003041_JtlCd | UK00C1 | 2024-03-31T12:07:04.428Z | 2024-04-07T12:24:20.871Z |
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);