participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240729000305_iyOtF" 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 |
---|---|---|---|---|---|
4730247 | 4730247 | 20240729000305_iyOtF | BE000H | 2024-08-01T12:01:08.627Z | 2024-08-06T12:14:35.969Z |
4730248 | 4730248 | 20240729000305_iyOtF | UK0009 | 2024-08-01T12:01:08.627Z | 2024-08-06T12:14:35.969Z |
4730249 | 4730249 | 20240729000305_iyOtF | UK000H | 2024-08-01T12:01:08.627Z | 2024-08-06T12:14:35.969Z |
4730250 | 4730250 | 20240729000305_iyOtF | UK0022 | 2024-08-01T12:01:08.627Z | 2024-08-06T12:14:35.969Z |
4730251 | 4730251 | 20240729000305_iyOtF | UK0025 | 2024-08-01T12:01:08.627Z | 2024-08-06T12:14:35.969Z |
4730252 | 4730252 | 20240729000305_iyOtF | UK002J | 2024-08-01T12:01:08.627Z | 2024-08-06T12:14:35.969Z |
4730253 | 4730253 | 20240729000305_iyOtF | UK004F | 2024-08-01T12:01:08.627Z | 2024-08-06T12:14:35.969Z |
4730254 | 4730254 | 20240729000305_iyOtF | UK006H | 2024-08-01T12:01:08.627Z | 2024-08-06T12:14:35.970Z |
4730255 | 4730255 | 20240729000305_iyOtF | UK008D | 2024-08-01T12:01:08.627Z | 2024-08-06T12:14:35.970Z |
4730256 | 4730256 | 20240729000305_iyOtF | UK008Q | 2024-08-01T12:01:08.627Z | 2024-08-06T12:14:35.970Z |
4730257 | 4730257 | 20240729000305_iyOtF | UK00AB | 2024-08-01T12:01:08.627Z | 2024-08-06T12:14:35.970Z |
4730258 | 4730258 | 20240729000305_iyOtF | UK00B5 | 2024-08-01T12:01:08.627Z | 2024-08-06T12:14:35.970Z |
4730259 | 4730259 | 20240729000305_iyOtF | UK00BE | 2024-08-01T12:01:08.627Z | 2024-08-06T12:14:35.970Z |
4730260 | 4730260 | 20240729000305_iyOtF | UK00CE | 2024-08-01T12:01:08.627Z | 2024-08-06T12:14:35.970Z |
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);