participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
19 rows where meteor_unique_trajectory_identifier = "20230819222548_kSWWo" 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 |
---|---|---|---|---|---|
2856116 | 2856116 | 20230819222548_kSWWo | UK0084 | 2024-01-06T00:01:03.489Z | 2024-01-06T00:01:03.489Z |
2856117 | 2856117 | 20230819222548_kSWWo | UK0092 | 2024-01-06T00:01:03.489Z | 2024-01-06T00:01:03.489Z |
2856118 | 2856118 | 20230819222548_kSWWo | UK009J | 2024-01-06T00:01:03.489Z | 2024-01-06T00:01:03.489Z |
2856119 | 2856119 | 20230819222548_kSWWo | UK00A5 | 2024-01-06T00:01:03.489Z | 2024-01-06T00:01:03.489Z |
2856101 | 2856101 | 20230819222548_kSWWo | BE000H | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
2856102 | 2856102 | 20230819222548_kSWWo | UK0001 | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
2856103 | 2856103 | 20230819222548_kSWWo | UK0002 | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
2856104 | 2856104 | 20230819222548_kSWWo | UK0006 | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
2856105 | 2856105 | 20230819222548_kSWWo | UK002Q | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
2856106 | 2856106 | 20230819222548_kSWWo | UK002W | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
2856107 | 2856107 | 20230819222548_kSWWo | UK0031 | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
2856108 | 2856108 | 20230819222548_kSWWo | UK0035 | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
2856109 | 2856109 | 20230819222548_kSWWo | UK003D | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
2856110 | 2856110 | 20230819222548_kSWWo | UK0041 | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
2856111 | 2856111 | 20230819222548_kSWWo | UK005N | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
2856112 | 2856112 | 20230819222548_kSWWo | UK005U | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
2856113 | 2856113 | 20230819222548_kSWWo | UK006R | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
2856114 | 2856114 | 20230819222548_kSWWo | UK007B | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
2856115 | 2856115 | 20230819222548_kSWWo | UK007H | 2024-01-06T00:01:03.488Z | 2024-01-06T00:01:03.488Z |
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);