participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
23 rows where meteor_unique_trajectory_identifier = "20240119023656_aeYcQ" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
3863253 | 3863253 | 20240119023656_aeYcQ | IE0004 | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863254 | 3863254 | 20240119023656_aeYcQ | UK000S | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863255 | 3863255 | 20240119023656_aeYcQ | UK000Y | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863256 | 3863256 | 20240119023656_aeYcQ | UK001L | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863257 | 3863257 | 20240119023656_aeYcQ | UK001U | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863258 | 3863258 | 20240119023656_aeYcQ | UK001Z | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863259 | 3863259 | 20240119023656_aeYcQ | UK002V | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863260 | 3863260 | 20240119023656_aeYcQ | UK0031 | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863261 | 3863261 | 20240119023656_aeYcQ | UK003F | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863262 | 3863262 | 20240119023656_aeYcQ | UK004G | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863263 | 3863263 | 20240119023656_aeYcQ | UK0050 | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863264 | 3863264 | 20240119023656_aeYcQ | UK007A | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863265 | 3863265 | 20240119023656_aeYcQ | UK007P | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863266 | 3863266 | 20240119023656_aeYcQ | UK0083 | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863267 | 3863267 | 20240119023656_aeYcQ | UK008J | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863268 | 3863268 | 20240119023656_aeYcQ | UK008U | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863269 | 3863269 | 20240119023656_aeYcQ | UK009D | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863270 | 3863270 | 20240119023656_aeYcQ | UK009K | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863271 | 3863271 | 20240119023656_aeYcQ | UK009P | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.973Z |
3863272 | 3863272 | 20240119023656_aeYcQ | UK009S | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.974Z |
3863273 | 3863273 | 20240119023656_aeYcQ | UK00AJ | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.974Z |
3863274 | 3863274 | 20240119023656_aeYcQ | UK00B0 | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.974Z |
3863275 | 3863275 | 20240119023656_aeYcQ | UK00BA | 2024-01-22T14:03:20.466Z | 2024-01-27T14:19:24.974Z |
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);