participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20240602185150_oC4ji" 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 |
---|---|---|---|---|---|
4405799 | 4405799 | 20240602185150_oC4ji | KR002C | 2024-06-04T12:05:15.715Z | 2024-06-11T12:13:32.159Z |
4405800 | 4405800 | 20240602185150_oC4ji | KR002H | 2024-06-04T12:05:15.715Z | 2024-06-11T12:13:32.159Z |
4405801 | 4405801 | 20240602185150_oC4ji | KR002X | 2024-06-04T12:05:15.715Z | 2024-06-11T12:13:32.159Z |
4405791 | 4405791 | 20240602185150_oC4ji | KR000L | 2024-06-04T12:05:15.686Z | 2024-06-11T12:13:32.159Z |
4405792 | 4405792 | 20240602185150_oC4ji | KR0016 | 2024-06-04T12:05:15.686Z | 2024-06-11T12:13:32.159Z |
4405793 | 4405793 | 20240602185150_oC4ji | KR001L | 2024-06-04T12:05:15.686Z | 2024-06-11T12:13:32.159Z |
4405794 | 4405794 | 20240602185150_oC4ji | KR0020 | 2024-06-04T12:05:15.686Z | 2024-06-11T12:13:32.159Z |
4405795 | 4405795 | 20240602185150_oC4ji | KR0021 | 2024-06-04T12:05:15.686Z | 2024-06-11T12:13:32.159Z |
4405796 | 4405796 | 20240602185150_oC4ji | KR0025 | 2024-06-04T12:05:15.686Z | 2024-06-11T12:13:32.159Z |
4405797 | 4405797 | 20240602185150_oC4ji | KR0027 | 2024-06-04T12:05:15.686Z | 2024-06-11T12:13:32.159Z |
4405798 | 4405798 | 20240602185150_oC4ji | KR002B | 2024-06-04T12:05:15.686Z | 2024-06-11T12:13:32.159Z |
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);