participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
12 rows where meteor_unique_trajectory_identifier = "20240914201007_8Xvja" sorted by created_at descending
This data as json, copyable, CSV (advanced)
Suggested facets: created_at, created_at (date), updated_at (date)
Link | rowid | meteor_unique_trajectory_identifier | station_code | created_at ▲ | updated_at |
---|---|---|---|---|---|
5111193 | 5111193 | 20240914201007_8Xvja | UK00B0 | 2024-09-18T12:01:42.471Z | 2024-09-23T12:15:54.894Z |
5111188 | 5111188 | 20240914201007_8Xvja | UK0050 | 2024-09-18T12:01:42.469Z | 2024-09-23T12:15:54.894Z |
5111189 | 5111189 | 20240914201007_8Xvja | UK005H | 2024-09-18T12:01:42.469Z | 2024-09-23T12:15:54.894Z |
5111190 | 5111190 | 20240914201007_8Xvja | UK007M | 2024-09-18T12:01:42.469Z | 2024-09-23T12:15:54.894Z |
5111191 | 5111191 | 20240914201007_8Xvja | UK0083 | 2024-09-18T12:01:42.469Z | 2024-09-23T12:15:54.894Z |
5111192 | 5111192 | 20240914201007_8Xvja | UK009P | 2024-09-18T12:01:42.469Z | 2024-09-23T12:15:54.894Z |
5111186 | 5111186 | 20240914201007_8Xvja | UK004D | 2024-09-18T12:01:42.468Z | 2024-09-23T12:15:54.894Z |
5111187 | 5111187 | 20240914201007_8Xvja | UK004M | 2024-09-18T12:01:42.468Z | 2024-09-23T12:15:54.894Z |
5111184 | 5111184 | 20240914201007_8Xvja | UK0032 | 2024-09-18T12:01:42.458Z | 2024-09-23T12:15:54.894Z |
5111185 | 5111185 | 20240914201007_8Xvja | UK0042 | 2024-09-18T12:01:42.458Z | 2024-09-23T12:15:54.894Z |
5111182 | 5111182 | 20240914201007_8Xvja | UK001L | 2024-09-18T12:01:42.449Z | 2024-09-23T12:15:54.894Z |
5111183 | 5111183 | 20240914201007_8Xvja | UK002Z | 2024-09-18T12:01:42.449Z | 2024-09-23T12:15:54.894Z |
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);