participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
17 rows where meteor_unique_trajectory_identifier = "20221006043658_svH0e" 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 |
---|---|---|---|---|---|
1745369 | 1745369 | 20221006043658_svH0e | UK0002 | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745370 | 1745370 | 20221006043658_svH0e | UK000S | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745371 | 1745371 | 20221006043658_svH0e | UK0026 | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745372 | 1745372 | 20221006043658_svH0e | UK0027 | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745373 | 1745373 | 20221006043658_svH0e | UK002G | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745374 | 1745374 | 20221006043658_svH0e | UK002H | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745375 | 1745375 | 20221006043658_svH0e | UK002S | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745376 | 1745376 | 20221006043658_svH0e | UK002T | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745377 | 1745377 | 20221006043658_svH0e | UK0031 | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745378 | 1745378 | 20221006043658_svH0e | UK0035 | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745379 | 1745379 | 20221006043658_svH0e | UK003L | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745380 | 1745380 | 20221006043658_svH0e | UK003R | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745381 | 1745381 | 20221006043658_svH0e | UK004N | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745382 | 1745382 | 20221006043658_svH0e | UK005V | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745383 | 1745383 | 20221006043658_svH0e | UK0070 | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745384 | 1745384 | 20221006043658_svH0e | UK007A | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
1745385 | 1745385 | 20221006043658_svH0e | UK007L | 2024-01-05T23:50:49.478Z | 2024-01-05T23:50:49.478Z |
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);