participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20231114181635_M9ReM" 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 |
---|---|---|---|---|---|
3395093 | 3395093 | 20231114181635_M9ReM | KR0002 | 2024-01-06T00:04:20.543Z | 2024-01-06T00:04:20.543Z |
3395094 | 3395094 | 20231114181635_M9ReM | KR000B | 2024-01-06T00:04:20.543Z | 2024-01-06T00:04:20.543Z |
3395095 | 3395095 | 20231114181635_M9ReM | KR000L | 2024-01-06T00:04:20.543Z | 2024-01-06T00:04:20.543Z |
3395096 | 3395096 | 20231114181635_M9ReM | KR000X | 2024-01-06T00:04:20.543Z | 2024-01-06T00:04:20.543Z |
3395097 | 3395097 | 20231114181635_M9ReM | KR001B | 2024-01-06T00:04:20.543Z | 2024-01-06T00:04:20.543Z |
3395098 | 3395098 | 20231114181635_M9ReM | KR001G | 2024-01-06T00:04:20.543Z | 2024-01-06T00:04:20.543Z |
3395099 | 3395099 | 20231114181635_M9ReM | KR001H | 2024-01-06T00:04:20.543Z | 2024-01-06T00:04:20.543Z |
3395100 | 3395100 | 20231114181635_M9ReM | KR0028 | 2024-01-06T00:04:20.543Z | 2024-01-06T00:04:20.543Z |
3395101 | 3395101 | 20231114181635_M9ReM | KR0029 | 2024-01-06T00:04:20.543Z | 2024-01-06T00:04:20.543Z |
3395102 | 3395102 | 20231114181635_M9ReM | KR002G | 2024-01-06T00:04:20.543Z | 2024-01-06T00:04:20.543Z |
3395103 | 3395103 | 20231114181635_M9ReM | KR003H | 2024-01-06T00:04:20.543Z | 2024-01-06T00:04:20.543Z |
3395104 | 3395104 | 20231114181635_M9ReM | KR003L | 2024-01-06T00:04:20.543Z | 2024-01-06T00:04:20.543Z |
3395105 | 3395105 | 20231114181635_M9ReM | KR003M | 2024-01-06T00:04:20.543Z | 2024-01-06T00:04:20.543Z |
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);