participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
13 rows where meteor_unique_trajectory_identifier = "20240119031728_rXh1i" 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 |
---|---|---|---|---|---|
3863977 | 3863977 | 20240119031728_rXh1i | UK001L | 2024-01-22T14:04:11.864Z | 2024-01-27T14:19:39.685Z |
3863978 | 3863978 | 20240119031728_rXh1i | UK0027 | 2024-01-22T14:04:11.864Z | 2024-01-27T14:19:39.685Z |
3863979 | 3863979 | 20240119031728_rXh1i | UK002G | 2024-01-22T14:04:11.864Z | 2024-01-27T14:19:39.685Z |
3863980 | 3863980 | 20240119031728_rXh1i | UK002S | 2024-01-22T14:04:11.864Z | 2024-01-27T14:19:39.685Z |
3863981 | 3863981 | 20240119031728_rXh1i | UK0050 | 2024-01-22T14:04:11.864Z | 2024-01-27T14:19:39.685Z |
3863982 | 3863982 | 20240119031728_rXh1i | UK007P | 2024-01-22T14:04:11.864Z | 2024-01-27T14:19:39.685Z |
3863983 | 3863983 | 20240119031728_rXh1i | UK008J | 2024-01-22T14:04:11.864Z | 2024-01-27T14:19:39.685Z |
3863984 | 3863984 | 20240119031728_rXh1i | UK009P | 2024-01-22T14:04:11.864Z | 2024-01-27T14:19:39.685Z |
3863985 | 3863985 | 20240119031728_rXh1i | UK009T | 2024-01-22T14:04:11.864Z | 2024-01-27T14:19:39.685Z |
3863986 | 3863986 | 20240119031728_rXh1i | UK00AE | 2024-01-22T14:04:11.864Z | 2024-01-27T14:19:39.685Z |
3863987 | 3863987 | 20240119031728_rXh1i | UK00B0 | 2024-01-22T14:04:11.864Z | 2024-01-27T14:19:39.685Z |
3863988 | 3863988 | 20240119031728_rXh1i | UK00B2 | 2024-01-22T14:04:11.864Z | 2024-01-27T14:19:39.685Z |
3863989 | 3863989 | 20240119031728_rXh1i | UK00BA | 2024-01-22T14:04:11.864Z | 2024-01-27T14:19:39.685Z |
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);