participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
15 rows where meteor_unique_trajectory_identifier = "20231020172424_mIjTU" 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 |
---|---|---|---|---|---|
3218917 | 3218917 | 20231020172424_mIjTU | KR002P | 2024-01-06T00:03:06.427Z | 2024-01-06T00:03:06.427Z |
3218918 | 3218918 | 20231020172424_mIjTU | KR002V | 2024-01-06T00:03:06.427Z | 2024-01-06T00:03:06.427Z |
3218919 | 3218919 | 20231020172424_mIjTU | KR0037 | 2024-01-06T00:03:06.427Z | 2024-01-06T00:03:06.427Z |
3218905 | 3218905 | 20231020172424_mIjTU | KR0002 | 2024-01-06T00:03:06.426Z | 2024-01-06T00:03:06.426Z |
3218906 | 3218906 | 20231020172424_mIjTU | KR000A | 2024-01-06T00:03:06.426Z | 2024-01-06T00:03:06.426Z |
3218907 | 3218907 | 20231020172424_mIjTU | KR000D | 2024-01-06T00:03:06.426Z | 2024-01-06T00:03:06.426Z |
3218908 | 3218908 | 20231020172424_mIjTU | KR000J | 2024-01-06T00:03:06.426Z | 2024-01-06T00:03:06.426Z |
3218909 | 3218909 | 20231020172424_mIjTU | KR000L | 2024-01-06T00:03:06.426Z | 2024-01-06T00:03:06.426Z |
3218910 | 3218910 | 20231020172424_mIjTU | KR000S | 2024-01-06T00:03:06.426Z | 2024-01-06T00:03:06.426Z |
3218911 | 3218911 | 20231020172424_mIjTU | KR0010 | 2024-01-06T00:03:06.426Z | 2024-01-06T00:03:06.426Z |
3218912 | 3218912 | 20231020172424_mIjTU | KR0014 | 2024-01-06T00:03:06.426Z | 2024-01-06T00:03:06.426Z |
3218913 | 3218913 | 20231020172424_mIjTU | KR001V | 2024-01-06T00:03:06.426Z | 2024-01-06T00:03:06.426Z |
3218914 | 3218914 | 20231020172424_mIjTU | KR0022 | 2024-01-06T00:03:06.426Z | 2024-01-06T00:03:06.426Z |
3218915 | 3218915 | 20231020172424_mIjTU | KR0023 | 2024-01-06T00:03:06.426Z | 2024-01-06T00:03:06.426Z |
3218916 | 3218916 | 20231020172424_mIjTU | KR002N | 2024-01-06T00:03:06.426Z | 2024-01-06T00:03:06.426Z |
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);