participating_station
Data license: CC BY 4.0 license · Data source: Global Meteor Network
19 rows where meteor_unique_trajectory_identifier = "20231111045155_ql22V" 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 |
---|---|---|---|---|---|
3372119 | 3372119 | 20231111045155_ql22V | UK000J | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372120 | 3372120 | 20231111045155_ql22V | UK000S | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372121 | 3372121 | 20231111045155_ql22V | UK002C | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372122 | 3372122 | 20231111045155_ql22V | UK002F | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372123 | 3372123 | 20231111045155_ql22V | UK003A | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372124 | 3372124 | 20231111045155_ql22V | UK003X | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372125 | 3372125 | 20231111045155_ql22V | UK004A | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372126 | 3372126 | 20231111045155_ql22V | UK005E | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372127 | 3372127 | 20231111045155_ql22V | UK005M | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372128 | 3372128 | 20231111045155_ql22V | UK0062 | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372129 | 3372129 | 20231111045155_ql22V | UK0063 | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372130 | 3372130 | 20231111045155_ql22V | UK006B | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372131 | 3372131 | 20231111045155_ql22V | UK007N | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372132 | 3372132 | 20231111045155_ql22V | UK0087 | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372133 | 3372133 | 20231111045155_ql22V | UK008F | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372134 | 3372134 | 20231111045155_ql22V | UK0099 | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372135 | 3372135 | 20231111045155_ql22V | UK00A0 | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372136 | 3372136 | 20231111045155_ql22V | UK00A4 | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
3372137 | 3372137 | 20231111045155_ql22V | UK00A9 | 2024-01-06T00:04:15.459Z | 2024-01-06T00:04:15.459Z |
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);