participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20231209225436_hSlmu" 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 |
---|---|---|---|---|---|
3556532 | 3556532 | 20231209225436_hSlmu | BE000H | 2024-01-06T00:05:10.206Z | 2024-01-06T00:05:10.206Z |
3556533 | 3556533 | 20231209225436_hSlmu | UK000F | 2024-01-06T00:05:10.206Z | 2024-01-06T00:05:10.206Z |
3556534 | 3556534 | 20231209225436_hSlmu | UK003D | 2024-01-06T00:05:10.206Z | 2024-01-06T00:05:10.206Z |
3556535 | 3556535 | 20231209225436_hSlmu | UK005N | 2024-01-06T00:05:10.206Z | 2024-01-06T00:05:10.206Z |
3556536 | 3556536 | 20231209225436_hSlmu | UK005U | 2024-01-06T00:05:10.206Z | 2024-01-06T00:05:10.206Z |
3556537 | 3556537 | 20231209225436_hSlmu | UK006R | 2024-01-06T00:05:10.206Z | 2024-01-06T00:05:10.206Z |
3556538 | 3556538 | 20231209225436_hSlmu | UK007E | 2024-01-06T00:05:10.206Z | 2024-01-06T00:05:10.206Z |
3556539 | 3556539 | 20231209225436_hSlmu | UK007H | 2024-01-06T00:05:10.206Z | 2024-01-06T00:05:10.206Z |
3556540 | 3556540 | 20231209225436_hSlmu | UK007R | 2024-01-06T00:05:10.206Z | 2024-01-06T00:05:10.206Z |
3556541 | 3556541 | 20231209225436_hSlmu | UK007V | 2024-01-06T00:05:10.206Z | 2024-01-06T00:05:10.206Z |
3556542 | 3556542 | 20231209225436_hSlmu | UK009A | 2024-01-06T00:05:10.206Z | 2024-01-06T00:05:10.206Z |
3556543 | 3556543 | 20231209225436_hSlmu | UK009V | 2024-01-06T00:05:10.206Z | 2024-01-06T00:05:10.206Z |
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);