participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240417010039_u4o2P" 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 |
---|---|---|---|---|---|
4200951 | 4200951 | 20240417010039_u4o2P | UK007B | 2024-04-18T12:02:32.598Z | 2024-04-25T12:21:10.751Z |
4200952 | 4200952 | 20240417010039_u4o2P | UK007L | 2024-04-18T12:02:32.598Z | 2024-04-25T12:21:10.751Z |
4200953 | 4200953 | 20240417010039_u4o2P | UK008K | 2024-04-18T12:02:32.598Z | 2024-04-25T12:21:10.751Z |
4200954 | 4200954 | 20240417010039_u4o2P | UK008W | 2024-04-18T12:02:32.598Z | 2024-04-25T12:21:10.751Z |
4200955 | 4200955 | 20240417010039_u4o2P | UK009S | 2024-04-18T12:02:32.598Z | 2024-04-25T12:21:10.751Z |
4200956 | 4200956 | 20240417010039_u4o2P | UK00A5 | 2024-04-18T12:02:32.598Z | 2024-04-25T12:21:10.751Z |
4200943 | 4200943 | 20240417010039_u4o2P | UK0006 | 2024-04-18T12:02:32.584Z | 2024-04-25T12:21:10.751Z |
4200944 | 4200944 | 20240417010039_u4o2P | UK000D | 2024-04-18T12:02:32.584Z | 2024-04-25T12:21:10.751Z |
4200945 | 4200945 | 20240417010039_u4o2P | UK000T | 2024-04-18T12:02:32.584Z | 2024-04-25T12:21:10.751Z |
4200946 | 4200946 | 20240417010039_u4o2P | UK001E | 2024-04-18T12:02:32.584Z | 2024-04-25T12:21:10.751Z |
4200947 | 4200947 | 20240417010039_u4o2P | UK002J | 2024-04-18T12:02:32.584Z | 2024-04-25T12:21:10.751Z |
4200948 | 4200948 | 20240417010039_u4o2P | UK003Z | 2024-04-18T12:02:32.584Z | 2024-04-25T12:21:10.751Z |
4200949 | 4200949 | 20240417010039_u4o2P | UK0060 | 2024-04-18T12:02:32.584Z | 2024-04-25T12:21:10.751Z |
4200950 | 4200950 | 20240417010039_u4o2P | UK006S | 2024-04-18T12:02:32.584Z | 2024-04-25T12:21:10.751Z |
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);