participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20240613144617_sKWiy" 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 |
---|---|---|---|---|---|
4461883 | 4461883 | 20240613144617_sKWiy | KR0004 | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461884 | 4461884 | 20240613144617_sKWiy | KR0007 | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461885 | 4461885 | 20240613144617_sKWiy | KR000D | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461886 | 4461886 | 20240613144617_sKWiy | KR000L | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461887 | 4461887 | 20240613144617_sKWiy | KR000P | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461888 | 4461888 | 20240613144617_sKWiy | KR0011 | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461889 | 4461889 | 20240613144617_sKWiy | KR0014 | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461890 | 4461890 | 20240613144617_sKWiy | KR001C | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461891 | 4461891 | 20240613144617_sKWiy | KR001X | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461892 | 4461892 | 20240613144617_sKWiy | KR0022 | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461893 | 4461893 | 20240613144617_sKWiy | KR002J | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461894 | 4461894 | 20240613144617_sKWiy | KR002K | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461895 | 4461895 | 20240613144617_sKWiy | KR002U | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461896 | 4461896 | 20240613144617_sKWiy | KR002Z | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461897 | 4461897 | 20240613144617_sKWiy | KR003B | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
4461898 | 4461898 | 20240613144617_sKWiy | KR003T | 2024-06-15T12:07:47.665Z | 2024-06-21T12:11:45.667Z |
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);