participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
22 rows where meteor_unique_trajectory_identifier = "20230420022011_KGGe3" 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 |
---|---|---|---|---|---|
2398250 | 2398250 | 20230420022011_KGGe3 | UK006Z | 2024-01-05T23:57:03.441Z | 2024-01-05T23:57:03.441Z |
2398251 | 2398251 | 20230420022011_KGGe3 | UK0073 | 2024-01-05T23:57:03.441Z | 2024-01-05T23:57:03.441Z |
2398252 | 2398252 | 20230420022011_KGGe3 | UK007A | 2024-01-05T23:57:03.441Z | 2024-01-05T23:57:03.441Z |
2398253 | 2398253 | 20230420022011_KGGe3 | UK007Y | 2024-01-05T23:57:03.441Z | 2024-01-05T23:57:03.441Z |
2398254 | 2398254 | 20230420022011_KGGe3 | UK0087 | 2024-01-05T23:57:03.441Z | 2024-01-05T23:57:03.441Z |
2398255 | 2398255 | 20230420022011_KGGe3 | UK0088 | 2024-01-05T23:57:03.441Z | 2024-01-05T23:57:03.441Z |
2398256 | 2398256 | 20230420022011_KGGe3 | UK008D | 2024-01-05T23:57:03.441Z | 2024-01-05T23:57:03.441Z |
2398257 | 2398257 | 20230420022011_KGGe3 | UK008Q | 2024-01-05T23:57:03.441Z | 2024-01-05T23:57:03.441Z |
2398236 | 2398236 | 20230420022011_KGGe3 | FR000F | 2024-01-05T23:57:03.440Z | 2024-01-05T23:57:03.440Z |
2398237 | 2398237 | 20230420022011_KGGe3 | UK000R | 2024-01-05T23:57:03.440Z | 2024-01-05T23:57:03.440Z |
2398238 | 2398238 | 20230420022011_KGGe3 | UK001T | 2024-01-05T23:57:03.440Z | 2024-01-05T23:57:03.440Z |
2398239 | 2398239 | 20230420022011_KGGe3 | UK001Y | 2024-01-05T23:57:03.440Z | 2024-01-05T23:57:03.440Z |
2398240 | 2398240 | 20230420022011_KGGe3 | UK002F | 2024-01-05T23:57:03.440Z | 2024-01-05T23:57:03.440Z |
2398241 | 2398241 | 20230420022011_KGGe3 | UK0030 | 2024-01-05T23:57:03.440Z | 2024-01-05T23:57:03.440Z |
2398242 | 2398242 | 20230420022011_KGGe3 | UK0031 | 2024-01-05T23:57:03.440Z | 2024-01-05T23:57:03.440Z |
2398243 | 2398243 | 20230420022011_KGGe3 | UK003A | 2024-01-05T23:57:03.440Z | 2024-01-05T23:57:03.440Z |
2398244 | 2398244 | 20230420022011_KGGe3 | UK003X | 2024-01-05T23:57:03.440Z | 2024-01-05T23:57:03.440Z |
2398245 | 2398245 | 20230420022011_KGGe3 | UK004P | 2024-01-05T23:57:03.440Z | 2024-01-05T23:57:03.440Z |
2398246 | 2398246 | 20230420022011_KGGe3 | UK0052 | 2024-01-05T23:57:03.440Z | 2024-01-05T23:57:03.440Z |
2398247 | 2398247 | 20230420022011_KGGe3 | UK0056 | 2024-01-05T23:57:03.440Z | 2024-01-05T23:57:03.440Z |
2398248 | 2398248 | 20230420022011_KGGe3 | UK005E | 2024-01-05T23:57:03.440Z | 2024-01-05T23:57:03.440Z |
2398249 | 2398249 | 20230420022011_KGGe3 | UK006G | 2024-01-05T23:57:03.440Z | 2024-01-05T23:57:03.440Z |
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);