participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
20 rows where meteor_unique_trajectory_identifier = "20230817022744_YBEI8" 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 |
---|---|---|---|---|---|
2841355 | 2841355 | 20230817022744_YBEI8 | BE000H | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841356 | 2841356 | 20230817022744_YBEI8 | UK0002 | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841357 | 2841357 | 20230817022744_YBEI8 | UK0029 | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841358 | 2841358 | 20230817022744_YBEI8 | UK002Q | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841359 | 2841359 | 20230817022744_YBEI8 | UK002W | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841360 | 2841360 | 20230817022744_YBEI8 | UK003C | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841361 | 2841361 | 20230817022744_YBEI8 | UK003D | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841362 | 2841362 | 20230817022744_YBEI8 | UK005N | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841363 | 2841363 | 20230817022744_YBEI8 | UK005U | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841364 | 2841364 | 20230817022744_YBEI8 | UK0062 | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841365 | 2841365 | 20230817022744_YBEI8 | UK007B | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841366 | 2841366 | 20230817022744_YBEI8 | UK007H | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841367 | 2841367 | 20230817022744_YBEI8 | UK007V | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841368 | 2841368 | 20230817022744_YBEI8 | UK0084 | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841369 | 2841369 | 20230817022744_YBEI8 | UK008B | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841370 | 2841370 | 20230817022744_YBEI8 | UK008Q | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841371 | 2841371 | 20230817022744_YBEI8 | UK0092 | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841372 | 2841372 | 20230817022744_YBEI8 | UK009A | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841373 | 2841373 | 20230817022744_YBEI8 | UK009V | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
2841374 | 2841374 | 20230817022744_YBEI8 | UK00A5 | 2024-01-06T00:00:57.826Z | 2024-01-06T00:00:57.826Z |
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);