participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240904023915_WhX5Z" 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 |
---|---|---|---|---|---|
5010154 | 5010154 | 20240904023915_WhX5Z | UK0050 | 2024-09-09T12:08:25.587Z | 2024-09-12T12:19:26.082Z |
5010155 | 5010155 | 20240904023915_WhX5Z | UK006L | 2024-09-09T12:08:25.587Z | 2024-09-12T12:19:26.082Z |
5010156 | 5010156 | 20240904023915_WhX5Z | UK0070 | 2024-09-09T12:08:25.587Z | 2024-09-12T12:19:26.082Z |
5010157 | 5010157 | 20240904023915_WhX5Z | UK007P | 2024-09-09T12:08:25.587Z | 2024-09-12T12:19:26.082Z |
5010158 | 5010158 | 20240904023915_WhX5Z | UK0098 | 2024-09-09T12:08:25.587Z | 2024-09-12T12:19:26.082Z |
5010159 | 5010159 | 20240904023915_WhX5Z | UK0099 | 2024-09-09T12:08:25.587Z | 2024-09-12T12:19:26.082Z |
5010160 | 5010160 | 20240904023915_WhX5Z | UK00AE | 2024-09-09T12:08:25.587Z | 2024-09-12T12:19:26.082Z |
5010161 | 5010161 | 20240904023915_WhX5Z | UK00AT | 2024-09-09T12:08:25.587Z | 2024-09-12T12:19:26.082Z |
5010148 | 5010148 | 20240904023915_WhX5Z | UK000S | 2024-09-09T12:08:25.586Z | 2024-09-12T12:19:26.082Z |
5010149 | 5010149 | 20240904023915_WhX5Z | UK001L | 2024-09-09T12:08:25.586Z | 2024-09-12T12:19:26.082Z |
5010150 | 5010150 | 20240904023915_WhX5Z | UK0026 | 2024-09-09T12:08:25.586Z | 2024-09-12T12:19:26.082Z |
5010151 | 5010151 | 20240904023915_WhX5Z | UK002Z | 2024-09-09T12:08:25.586Z | 2024-09-12T12:19:26.082Z |
5010152 | 5010152 | 20240904023915_WhX5Z | UK0030 | 2024-09-09T12:08:25.586Z | 2024-09-12T12:19:26.082Z |
5010153 | 5010153 | 20240904023915_WhX5Z | UK0032 | 2024-09-09T12:08:25.586Z | 2024-09-12T12:19:26.082Z |
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);