participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20220831023531_HfZ3s" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
1618450 | 1618450 | 20220831023531_HfZ3s | UK007E | 2024-01-05T23:49:44.221Z | 2024-01-05T23:49:44.221Z |
1618451 | 1618451 | 20220831023531_HfZ3s | UK007H | 2024-01-05T23:49:44.221Z | 2024-01-05T23:49:44.221Z |
1618439 | 1618439 | 20220831023531_HfZ3s | UK000F | 2024-01-05T23:49:44.220Z | 2024-01-05T23:49:44.220Z |
1618440 | 1618440 | 20220831023531_HfZ3s | UK002W | 2024-01-05T23:49:44.220Z | 2024-01-05T23:49:44.220Z |
1618441 | 1618441 | 20220831023531_HfZ3s | UK0034 | 2024-01-05T23:49:44.220Z | 2024-01-05T23:49:44.220Z |
1618442 | 1618442 | 20220831023531_HfZ3s | UK0041 | 2024-01-05T23:49:44.220Z | 2024-01-05T23:49:44.220Z |
1618443 | 1618443 | 20220831023531_HfZ3s | UK0045 | 2024-01-05T23:49:44.220Z | 2024-01-05T23:49:44.220Z |
1618444 | 1618444 | 20220831023531_HfZ3s | UK004X | 2024-01-05T23:49:44.220Z | 2024-01-05T23:49:44.220Z |
1618445 | 1618445 | 20220831023531_HfZ3s | UK005F | 2024-01-05T23:49:44.220Z | 2024-01-05T23:49:44.220Z |
1618446 | 1618446 | 20220831023531_HfZ3s | UK005P | 2024-01-05T23:49:44.220Z | 2024-01-05T23:49:44.220Z |
1618447 | 1618447 | 20220831023531_HfZ3s | UK006B | 2024-01-05T23:49:44.220Z | 2024-01-05T23:49:44.220Z |
1618448 | 1618448 | 20220831023531_HfZ3s | UK0078 | 2024-01-05T23:49:44.220Z | 2024-01-05T23:49:44.220Z |
1618449 | 1618449 | 20220831023531_HfZ3s | UK007B | 2024-01-05T23:49:44.220Z | 2024-01-05T23:49:44.220Z |
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);