participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240528162304_Sn6Vs" 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 |
---|---|---|---|---|---|
4388789 | 4388789 | 20240528162304_Sn6Vs | KR003F | 2024-05-30T12:04:21.386Z | 2024-06-06T12:14:25.362Z |
4388786 | 4388786 | 20240528162304_Sn6Vs | KR002H | 2024-05-30T12:04:21.385Z | 2024-06-06T12:14:25.362Z |
4388787 | 4388787 | 20240528162304_Sn6Vs | KR002Q | 2024-05-30T12:04:21.385Z | 2024-06-06T12:14:25.362Z |
4388788 | 4388788 | 20240528162304_Sn6Vs | KR002X | 2024-05-30T12:04:21.385Z | 2024-06-06T12:14:25.362Z |
4388785 | 4388785 | 20240528162304_Sn6Vs | KR002B | 2024-05-30T12:04:21.368Z | 2024-06-06T12:14:25.362Z |
4388780 | 4388780 | 20240528162304_Sn6Vs | KR0017 | 2024-05-30T12:04:21.345Z | 2024-06-06T12:14:25.362Z |
4388781 | 4388781 | 20240528162304_Sn6Vs | KR001L | 2024-05-30T12:04:21.345Z | 2024-06-06T12:14:25.362Z |
4388782 | 4388782 | 20240528162304_Sn6Vs | KR0020 | 2024-05-30T12:04:21.345Z | 2024-06-06T12:14:25.362Z |
4388783 | 4388783 | 20240528162304_Sn6Vs | KR0021 | 2024-05-30T12:04:21.345Z | 2024-06-06T12:14:25.362Z |
4388784 | 4388784 | 20240528162304_Sn6Vs | KR0027 | 2024-05-30T12:04:21.345Z | 2024-06-06T12:14:25.362Z |
4388778 | 4388778 | 20240528162304_Sn6Vs | KR000E | 2024-05-30T12:04:21.344Z | 2024-06-06T12:14:25.362Z |
4388779 | 4388779 | 20240528162304_Sn6Vs | KR0016 | 2024-05-30T12:04:21.344Z | 2024-06-06T12:14:25.362Z |
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);