participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
16 rows where meteor_unique_trajectory_identifier = "20231111005846_35jox" 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 |
---|---|---|---|---|---|
3367600 | 3367600 | 20231111005846_35jox | BE000H | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367601 | 3367601 | 20231111005846_35jox | UK000F | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367602 | 3367602 | 20231111005846_35jox | UK003N | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367603 | 3367603 | 20231111005846_35jox | UK0045 | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367604 | 3367604 | 20231111005846_35jox | UK004F | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367605 | 3367605 | 20231111005846_35jox | UK005P | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367606 | 3367606 | 20231111005846_35jox | UK006D | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367607 | 3367607 | 20231111005846_35jox | UK0078 | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367608 | 3367608 | 20231111005846_35jox | UK0079 | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367609 | 3367609 | 20231111005846_35jox | UK007C | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367610 | 3367610 | 20231111005846_35jox | UK007E | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367611 | 3367611 | 20231111005846_35jox | UK007H | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367612 | 3367612 | 20231111005846_35jox | UK008T | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367613 | 3367613 | 20231111005846_35jox | UK009A | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367614 | 3367614 | 20231111005846_35jox | UK009X | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
3367615 | 3367615 | 20231111005846_35jox | UK00AF | 2024-01-06T00:04:15.121Z | 2024-01-06T00:04:15.121Z |
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);