participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20231119021352_mLkKL" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
3429049 | 3429049 | 20231119021352_mLkKL | BE000H | 2024-01-06T00:04:30.817Z | 2024-01-06T00:04:30.817Z |
3429050 | 3429050 | 20231119021352_mLkKL | UK001P | 2024-01-06T00:04:30.817Z | 2024-01-06T00:04:30.817Z |
3429051 | 3429051 | 20231119021352_mLkKL | UK002Q | 2024-01-06T00:04:30.817Z | 2024-01-06T00:04:30.817Z |
3429052 | 3429052 | 20231119021352_mLkKL | UK0035 | 2024-01-06T00:04:30.817Z | 2024-01-06T00:04:30.817Z |
3429053 | 3429053 | 20231119021352_mLkKL | UK006B | 2024-01-06T00:04:30.817Z | 2024-01-06T00:04:30.817Z |
3429054 | 3429054 | 20231119021352_mLkKL | UK006R | 2024-01-06T00:04:30.817Z | 2024-01-06T00:04:30.817Z |
3429055 | 3429055 | 20231119021352_mLkKL | UK007B | 2024-01-06T00:04:30.817Z | 2024-01-06T00:04:30.817Z |
3429056 | 3429056 | 20231119021352_mLkKL | UK007E | 2024-01-06T00:04:30.817Z | 2024-01-06T00:04:30.817Z |
3429057 | 3429057 | 20231119021352_mLkKL | UK007H | 2024-01-06T00:04:30.817Z | 2024-01-06T00:04:30.817Z |
3429058 | 3429058 | 20231119021352_mLkKL | UK007R | 2024-01-06T00:04:30.817Z | 2024-01-06T00:04:30.817Z |
3429059 | 3429059 | 20231119021352_mLkKL | UK00AT | 2024-01-06T00:04:30.817Z | 2024-01-06T00:04:30.817Z |
3429060 | 3429060 | 20231119021352_mLkKL | UK00B1 | 2024-01-06T00:04:30.817Z | 2024-01-06T00:04:30.817Z |
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);