participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
10 rows where meteor_unique_trajectory_identifier = "20240613162412_caRhG" 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 |
---|---|---|---|---|---|
4462243 | 4462243 | 20240613162412_caRhG | KR0002 | 2024-06-15T12:08:20.188Z | 2024-06-21T12:11:46.502Z |
4462244 | 4462244 | 20240613162412_caRhG | KR0007 | 2024-06-15T12:08:20.188Z | 2024-06-21T12:11:46.502Z |
4462245 | 4462245 | 20240613162412_caRhG | KR000A | 2024-06-15T12:08:20.188Z | 2024-06-21T12:11:46.502Z |
4462246 | 4462246 | 20240613162412_caRhG | KR000L | 2024-06-15T12:08:20.188Z | 2024-06-21T12:11:46.502Z |
4462247 | 4462247 | 20240613162412_caRhG | KR0010 | 2024-06-15T12:08:20.188Z | 2024-06-21T12:11:46.502Z |
4462248 | 4462248 | 20240613162412_caRhG | KR001D | 2024-06-15T12:08:20.188Z | 2024-06-21T12:11:46.502Z |
4462249 | 4462249 | 20240613162412_caRhG | KR001U | 2024-06-15T12:08:20.188Z | 2024-06-21T12:11:46.502Z |
4462250 | 4462250 | 20240613162412_caRhG | KR002E | 2024-06-15T12:08:20.188Z | 2024-06-21T12:11:46.502Z |
4462251 | 4462251 | 20240613162412_caRhG | KR002F | 2024-06-15T12:08:20.188Z | 2024-06-21T12:11:46.502Z |
4462252 | 4462252 | 20240613162412_caRhG | KR003Q | 2024-06-15T12:08:20.188Z | 2024-06-21T12:11:46.502Z |
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);