participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240627140032_3CaLB" 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 |
---|---|---|---|---|---|
4506652 | 4506652 | 20240627140032_3CaLB | KR003T | 2024-06-28T12:00:31.553Z | 2024-07-06T12:16:09.648Z |
4506641 | 4506641 | 20240627140032_3CaLB | KR0007 | 2024-06-28T12:00:31.542Z | 2024-07-06T12:16:09.648Z |
4506642 | 4506642 | 20240627140032_3CaLB | KR000D | 2024-06-28T12:00:31.542Z | 2024-07-06T12:16:09.648Z |
4506643 | 4506643 | 20240627140032_3CaLB | KR000L | 2024-06-28T12:00:31.542Z | 2024-07-06T12:16:09.648Z |
4506644 | 4506644 | 20240627140032_3CaLB | KR0014 | 2024-06-28T12:00:31.542Z | 2024-07-06T12:16:09.648Z |
4506645 | 4506645 | 20240627140032_3CaLB | KR0022 | 2024-06-28T12:00:31.542Z | 2024-07-06T12:16:09.648Z |
4506646 | 4506646 | 20240627140032_3CaLB | KR002K | 2024-06-28T12:00:31.542Z | 2024-07-06T12:16:09.648Z |
4506647 | 4506647 | 20240627140032_3CaLB | KR002P | 2024-06-28T12:00:31.542Z | 2024-07-06T12:16:09.648Z |
4506648 | 4506648 | 20240627140032_3CaLB | KR002U | 2024-06-28T12:00:31.542Z | 2024-07-06T12:16:09.648Z |
4506649 | 4506649 | 20240627140032_3CaLB | KR002V | 2024-06-28T12:00:31.542Z | 2024-07-06T12:16:09.648Z |
4506650 | 4506650 | 20240627140032_3CaLB | KR0037 | 2024-06-28T12:00:31.542Z | 2024-07-06T12:16:09.648Z |
4506651 | 4506651 | 20240627140032_3CaLB | KR003N | 2024-06-28T12:00:31.542Z | 2024-07-06T12:16:09.648Z |
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);