participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240603151306_mmf3U" 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 |
---|---|---|---|---|---|
4409551 | 4409551 | 20240603151306_mmf3U | KR003S | 2024-06-05T12:03:42.228Z | 2024-06-12T12:10:33.251Z |
4409552 | 4409552 | 20240603151306_mmf3U | KR003T | 2024-06-05T12:03:42.228Z | 2024-06-12T12:10:33.251Z |
4409553 | 4409553 | 20240603151306_mmf3U | KR003X | 2024-06-05T12:03:42.228Z | 2024-06-12T12:10:33.251Z |
4409550 | 4409550 | 20240603151306_mmf3U | KR002V | 2024-06-05T12:03:42.226Z | 2024-06-12T12:10:33.251Z |
4409549 | 4409549 | 20240603151306_mmf3U | KR002K | 2024-06-05T12:03:42.225Z | 2024-06-12T12:10:33.251Z |
4409548 | 4409548 | 20240603151306_mmf3U | KR002E | 2024-06-05T12:03:42.213Z | 2024-06-12T12:10:33.251Z |
4409547 | 4409547 | 20240603151306_mmf3U | KR001W | 2024-06-05T12:03:42.212Z | 2024-06-12T12:10:33.251Z |
4409542 | 4409542 | 20240603151306_mmf3U | KR0007 | 2024-06-05T12:03:42.198Z | 2024-06-12T12:10:33.251Z |
4409543 | 4409543 | 20240603151306_mmf3U | KR000D | 2024-06-05T12:03:42.198Z | 2024-06-12T12:10:33.251Z |
4409544 | 4409544 | 20240603151306_mmf3U | KR000L | 2024-06-05T12:03:42.198Z | 2024-06-12T12:10:33.251Z |
4409545 | 4409545 | 20240603151306_mmf3U | KR000N | 2024-06-05T12:03:42.198Z | 2024-06-12T12:10:33.251Z |
4409546 | 4409546 | 20240603151306_mmf3U | KR001D | 2024-06-05T12:03:42.198Z | 2024-06-12T12:10:33.251Z |
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);