participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
11 rows where meteor_unique_trajectory_identifier = "20231022040905_TwwLr" 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 |
---|---|---|---|---|---|
3238280 | 3238280 | 20231022040905_TwwLr | UK001Y | 2024-01-06T00:03:15.896Z | 2024-01-06T00:03:15.896Z |
3238281 | 3238281 | 20231022040905_TwwLr | UK002F | 2024-01-06T00:03:15.896Z | 2024-01-06T00:03:15.896Z |
3238282 | 3238282 | 20231022040905_TwwLr | UK002X | 2024-01-06T00:03:15.896Z | 2024-01-06T00:03:15.896Z |
3238283 | 3238283 | 20231022040905_TwwLr | UK0032 | 2024-01-06T00:03:15.896Z | 2024-01-06T00:03:15.896Z |
3238284 | 3238284 | 20231022040905_TwwLr | UK003B | 2024-01-06T00:03:15.896Z | 2024-01-06T00:03:15.896Z |
3238285 | 3238285 | 20231022040905_TwwLr | UK004N | 2024-01-06T00:03:15.896Z | 2024-01-06T00:03:15.896Z |
3238286 | 3238286 | 20231022040905_TwwLr | UK006A | 2024-01-06T00:03:15.896Z | 2024-01-06T00:03:15.896Z |
3238287 | 3238287 | 20231022040905_TwwLr | UK0075 | 2024-01-06T00:03:15.896Z | 2024-01-06T00:03:15.896Z |
3238288 | 3238288 | 20231022040905_TwwLr | UK007N | 2024-01-06T00:03:15.896Z | 2024-01-06T00:03:15.896Z |
3238289 | 3238289 | 20231022040905_TwwLr | UK0087 | 2024-01-06T00:03:15.896Z | 2024-01-06T00:03:15.896Z |
3238290 | 3238290 | 20231022040905_TwwLr | UK0099 | 2024-01-06T00:03:15.896Z | 2024-01-06T00:03:15.896Z |
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);