participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
23 rows where meteor_unique_trajectory_identifier = "20240811223315_NNpr2" 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 |
---|---|---|---|---|---|
4971264 | 4971264 | 20240811223315_NNpr2 | UK009A | 2024-09-05T12:09:41.683Z | 2024-09-06T12:08:50.990Z |
4971265 | 4971265 | 20240811223315_NNpr2 | UK009X | 2024-09-05T12:09:41.683Z | 2024-09-06T12:08:50.990Z |
4971266 | 4971266 | 20240811223315_NNpr2 | UK00AF | 2024-09-05T12:09:41.683Z | 2024-09-06T12:08:50.990Z |
4971267 | 4971267 | 20240811223315_NNpr2 | UK00B1 | 2024-09-05T12:09:41.683Z | 2024-09-06T12:08:50.990Z |
4971268 | 4971268 | 20240811223315_NNpr2 | UK00BC | 2024-09-05T12:09:41.683Z | 2024-09-06T12:08:50.990Z |
4971269 | 4971269 | 20240811223315_NNpr2 | UK00CA | 2024-09-05T12:09:41.683Z | 2024-09-06T12:08:50.990Z |
4971247 | 4971247 | 20240811223315_NNpr2 | BE0005 | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971248 | 4971248 | 20240811223315_NNpr2 | BE0008 | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971249 | 4971249 | 20240811223315_NNpr2 | BE000C | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971250 | 4971250 | 20240811223315_NNpr2 | BE000G | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971251 | 4971251 | 20240811223315_NNpr2 | BE000J | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971252 | 4971252 | 20240811223315_NNpr2 | BE000P | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971253 | 4971253 | 20240811223315_NNpr2 | BE000T | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971254 | 4971254 | 20240811223315_NNpr2 | FR000X | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971255 | 4971255 | 20240811223315_NNpr2 | FR0013 | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971256 | 4971256 | 20240811223315_NNpr2 | UK0004 | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971257 | 4971257 | 20240811223315_NNpr2 | UK000F | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971258 | 4971258 | 20240811223315_NNpr2 | UK002Y | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971259 | 4971259 | 20240811223315_NNpr2 | UK0045 | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971260 | 4971260 | 20240811223315_NNpr2 | UK004C | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971261 | 4971261 | 20240811223315_NNpr2 | UK004E | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971262 | 4971262 | 20240811223315_NNpr2 | UK007U | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
4971263 | 4971263 | 20240811223315_NNpr2 | UK008T | 2024-09-05T12:09:41.682Z | 2024-09-06T12:08:50.990Z |
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);