participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
17 rows where meteor_unique_trajectory_identifier = "20240227012127_X12yD" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, updated_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
4005103 | 4005103 | 20240227012127_X12yD | UK007B | 2024-02-28T14:03:32.731Z | 2024-03-06T14:19:41.824Z |
4005104 | 4005104 | 20240227012127_X12yD | UK007C | 2024-02-28T14:03:32.731Z | 2024-03-06T14:19:41.824Z |
4005105 | 4005105 | 20240227012127_X12yD | UK007R | 2024-02-28T14:03:32.731Z | 2024-03-06T14:19:41.824Z |
4005106 | 4005106 | 20240227012127_X12yD | UK0084 | 2024-02-28T14:03:32.731Z | 2024-03-06T14:19:41.824Z |
4005107 | 4005107 | 20240227012127_X12yD | UK008K | 2024-02-28T14:03:32.731Z | 2024-03-06T14:19:41.824Z |
4005108 | 4005108 | 20240227012127_X12yD | UK009S | 2024-02-28T14:03:32.731Z | 2024-03-06T14:19:41.824Z |
4005109 | 4005109 | 20240227012127_X12yD | UK00A5 | 2024-02-28T14:03:32.731Z | 2024-03-06T14:19:41.824Z |
4005110 | 4005110 | 20240227012127_X12yD | UK00B1 | 2024-02-28T14:03:32.731Z | 2024-03-06T14:19:41.824Z |
4005111 | 4005111 | 20240227012127_X12yD | UK00B2 | 2024-02-28T14:03:32.731Z | 2024-03-06T14:19:41.824Z |
4005095 | 4005095 | 20240227012127_X12yD | UK0001 | 2024-02-28T14:03:32.710Z | 2024-03-06T14:19:41.823Z |
4005096 | 4005096 | 20240227012127_X12yD | UK000S | 2024-02-28T14:03:32.710Z | 2024-03-06T14:19:41.823Z |
4005097 | 4005097 | 20240227012127_X12yD | UK002W | 2024-02-28T14:03:32.710Z | 2024-03-06T14:19:41.823Z |
4005098 | 4005098 | 20240227012127_X12yD | UK0031 | 2024-02-28T14:03:32.710Z | 2024-03-06T14:19:41.823Z |
4005099 | 4005099 | 20240227012127_X12yD | UK003D | 2024-02-28T14:03:32.710Z | 2024-03-06T14:19:41.823Z |
4005100 | 4005100 | 20240227012127_X12yD | UK003L | 2024-02-28T14:03:32.710Z | 2024-03-06T14:19:41.823Z |
4005101 | 4005101 | 20240227012127_X12yD | UK003X | 2024-02-28T14:03:32.710Z | 2024-03-06T14:19:41.824Z |
4005102 | 4005102 | 20240227012127_X12yD | UK0041 | 2024-02-28T14:03:32.710Z | 2024-03-06T14:19:41.824Z |
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);