participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
14 rows where meteor_unique_trajectory_identifier = "20240303041410_LeEcx" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4021188 | 4021188 | 20240303041410_LeEcx | UK001Z | 2024-03-04T14:07:01.100Z | 2024-03-11T12:18:41.603Z |
4021189 | 4021189 | 20240303041410_LeEcx | UK003F | 2024-03-04T14:07:01.100Z | 2024-03-11T12:18:41.603Z |
4021190 | 4021190 | 20240303041410_LeEcx | UK005S | 2024-03-04T14:07:01.100Z | 2024-03-11T12:18:41.603Z |
4021191 | 4021191 | 20240303041410_LeEcx | UK007A | 2024-03-04T14:07:01.100Z | 2024-03-11T12:18:41.603Z |
4021192 | 4021192 | 20240303041410_LeEcx | UK007P | 2024-03-04T14:07:01.100Z | 2024-03-11T12:18:41.603Z |
4021193 | 4021193 | 20240303041410_LeEcx | UK0089 | 2024-03-04T14:07:01.100Z | 2024-03-11T12:18:41.603Z |
4021194 | 4021194 | 20240303041410_LeEcx | UK008W | 2024-03-04T14:07:01.100Z | 2024-03-11T12:18:41.603Z |
4021195 | 4021195 | 20240303041410_LeEcx | UK009D | 2024-03-04T14:07:01.100Z | 2024-03-11T12:18:41.603Z |
4021196 | 4021196 | 20240303041410_LeEcx | UK009K | 2024-03-04T14:07:01.100Z | 2024-03-11T12:18:41.603Z |
4021197 | 4021197 | 20240303041410_LeEcx | UK009P | 2024-03-04T14:07:01.100Z | 2024-03-11T12:18:41.603Z |
4021198 | 4021198 | 20240303041410_LeEcx | UK009W | 2024-03-04T14:07:01.100Z | 2024-03-11T12:18:41.603Z |
4021199 | 4021199 | 20240303041410_LeEcx | UK00B0 | 2024-03-04T14:07:01.100Z | 2024-03-11T12:18:41.603Z |
4021200 | 4021200 | 20240303041410_LeEcx | UK00BA | 2024-03-04T14:07:01.100Z | 2024-03-11T12:18:41.603Z |
4021201 | 4021201 | 20240303041410_LeEcx | UK00BW | 2024-03-04T14:07:01.100Z | 2024-03-11T12:18:41.603Z |
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);