participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
27 rows where meteor_unique_trajectory_identifier = "20240409223257_zA5s3" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4166092 | 4166092 | 20240409223257_zA5s3 | UK0030 | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166093 | 4166093 | 20240409223257_zA5s3 | UK004G | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166094 | 4166094 | 20240409223257_zA5s3 | UK005S | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166095 | 4166095 | 20240409223257_zA5s3 | UK0067 | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166096 | 4166096 | 20240409223257_zA5s3 | UK0070 | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166097 | 4166097 | 20240409223257_zA5s3 | UK007A | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166098 | 4166098 | 20240409223257_zA5s3 | UK007L | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166099 | 4166099 | 20240409223257_zA5s3 | UK007P | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166100 | 4166100 | 20240409223257_zA5s3 | UK0084 | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166101 | 4166101 | 20240409223257_zA5s3 | UK0086 | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166102 | 4166102 | 20240409223257_zA5s3 | UK008J | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166103 | 4166103 | 20240409223257_zA5s3 | UK009D | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166104 | 4166104 | 20240409223257_zA5s3 | UK009G | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166105 | 4166105 | 20240409223257_zA5s3 | UK009J | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166106 | 4166106 | 20240409223257_zA5s3 | UK009K | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166107 | 4166107 | 20240409223257_zA5s3 | UK009S | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166108 | 4166108 | 20240409223257_zA5s3 | UK009T | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166109 | 4166109 | 20240409223257_zA5s3 | UK00AT | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166110 | 4166110 | 20240409223257_zA5s3 | UK00B0 | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166111 | 4166111 | 20240409223257_zA5s3 | UK00B2 | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166112 | 4166112 | 20240409223257_zA5s3 | UK00BA | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166113 | 4166113 | 20240409223257_zA5s3 | UK00BF | 2024-04-11T12:04:57.349Z | 2024-04-18T12:21:07.460Z |
4166087 | 4166087 | 20240409223257_zA5s3 | UK000S | 2024-04-11T12:04:57.348Z | 2024-04-18T12:21:07.460Z |
4166088 | 4166088 | 20240409223257_zA5s3 | UK000Y | 2024-04-11T12:04:57.348Z | 2024-04-18T12:21:07.460Z |
4166089 | 4166089 | 20240409223257_zA5s3 | UK001Z | 2024-04-11T12:04:57.348Z | 2024-04-18T12:21:07.460Z |
4166090 | 4166090 | 20240409223257_zA5s3 | UK0026 | 2024-04-11T12:04:57.348Z | 2024-04-18T12:21:07.460Z |
4166091 | 4166091 | 20240409223257_zA5s3 | UK0027 | 2024-04-11T12:04:57.348Z | 2024-04-18T12:21:07.460Z |
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);