-
Notifications
You must be signed in to change notification settings - Fork 6
/
relation_builder.py
541 lines (422 loc) Β· 19.9 KB
/
relation_builder.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
import asyncio
from collections import defaultdict
from collections.abc import Iterable
from dataclasses import replace
from itertools import chain, cycle, islice, zip_longest
from typing import NamedTuple
import xmltodict
from fastapi import HTTPException
from sklearn.neighbors import BallTree
from starlette import status
from config import CHANGESET_ID_PLACEHOLDER, CREATED_BY
from cython_lib.geoutils import haversine_distance, radians_tuple
from models.element_id import ElementId, element_id, split_element_id
from models.fetch_relation import FetchRelationBusStopCollection, FetchRelationElement
from models.final_route import FinalRoute
from models.relation_member import RelationMember
from openstreetmap import OpenStreetMap
from overpass import Overpass, QueryParentsResult
class SortedBusEntry(NamedTuple):
bus_stop_collection: FetchRelationBusStopCollection
sort_index: int
neighbor_id: ElementId
distance_from_neighbor: float
right_hand_side: bool | None
def is_right_hand_side(
latLng1: tuple[float, float], latLng2: tuple[float, float], latLngTest: tuple[float, float]
) -> bool | None:
if latLng1 == latLngTest or latLng2 == latLngTest:
return None
v1 = (latLng2[0] - latLng1[0], latLng2[1] - latLng1[1])
v2 = (latLngTest[0] - latLng2[0], latLngTest[1] - latLng2[1])
cross_product_z = v1[0] * v2[1] - v1[1] * v2[0]
return cross_product_z > 0
def interpolate_latLng(
latLng1_rad: tuple[float, float], latLng2_rad: tuple[float, float], threshold: float
) -> list[tuple[float, float]]:
distance = haversine_distance(latLng1_rad, latLng2_rad, unit_radians=True)
result_size = int(distance / threshold) + 1
result = [latLng1_rad]
if result_size > 1:
delta_lat_rad = (latLng2_rad[0] - latLng1_rad[0]) / result_size
delta_lng_rad = (latLng2_rad[1] - latLng1_rad[1]) / result_size
for i in range(1, result_size):
result.append((latLng1_rad[0] + delta_lat_rad * i, latLng1_rad[1] + delta_lng_rad * i))
return result
def sort_bus_on_path(
bus_stop_collections: list[FetchRelationBusStopCollection], ways: Iterable[FetchRelationElement]
) -> list[SortedBusEntry]:
if not bus_stop_collections:
return []
interpolate_threshold = 60 # meters
latLng_rad_idx_way_map: dict[tuple, tuple[int, FetchRelationElement]] = {}
tree_coordinates_rad = []
for way in ways:
way_latLngs_rad = tuple(radians_tuple(latLng) for latLng in way.latLngs)
for idx, (current_latLng_rad, next_latLng_rad) in enumerate(
zip_longest(way_latLngs_rad, way_latLngs_rad[1:], fillvalue=way_latLngs_rad[-1])
):
for latLng_rad in interpolate_latLng(current_latLng_rad, next_latLng_rad, interpolate_threshold):
latLng_rad_idx_way_map[latLng_rad] = (idx, way)
tree_coordinates_rad.append(latLng_rad)
tree = BallTree(tree_coordinates_rad, metric='haversine')
collections_latLng_rad = tuple(radians_tuple(collection.best.latLng) for collection in bus_stop_collections)
distances, idxs = tree.query(collections_latLng_rad, k=1, return_distance=True, sort_results=False)
result = []
for collection, collection_latLng_rad, distance, idx in zip(
bus_stop_collections, collections_latLng_rad, distances, idxs
):
distance = distance[0] * 6_371_000 # earth radius
idx = idx[0]
neighbor_latLng_rad = tree_coordinates_rad[idx]
neighbor_latLngs_idx, neighbor_way = latLng_rad_idx_way_map[neighbor_latLng_rad]
if neighbor_latLngs_idx > 0:
right_hand_side = is_right_hand_side(
radians_tuple(neighbor_way.latLngs[neighbor_latLngs_idx - 1]),
neighbor_latLng_rad,
collection_latLng_rad,
)
elif neighbor_latLngs_idx + 1 < len(neighbor_way.latLngs):
right_hand_side = is_right_hand_side(
neighbor_latLng_rad,
radians_tuple(neighbor_way.latLngs[neighbor_latLngs_idx + 1]),
collection_latLng_rad,
)
else:
right_hand_side = None
result.append(
SortedBusEntry(
bus_stop_collection=collection,
sort_index=idx,
neighbor_id=neighbor_way.id,
distance_from_neighbor=distance,
right_hand_side=right_hand_side,
)
)
assert not any(e.sort_index == -1 for e in result)
return sorted(result, key=lambda x: x.sort_index) # TODO: sort stop, platform on the same sort_index
def _unsplit_way_ids(way_ids: list[ElementId]) -> list[ElementId]:
way_ids_parts = tuple(map(split_element_id, way_ids))
simplify_whitelist: set[int] = set()
simplify_blacklist: list[int] = []
# pass 1, create blacklist
i = 0
while i < len(way_ids_parts):
way_id_parts = way_ids_parts[i]
# skip: not splitted way
if way_id_parts.extra_num is None:
i += 1
continue
# skip and blacklist: mid-splitted way
if 1 < way_id_parts.extra_num < way_id_parts.max_num:
simplify_blacklist.append(way_id_parts.id)
i += 1
continue
i_end = i + way_id_parts.max_num - 1
# skip and blacklist: out-of-bounds way
if i_end >= len(way_ids):
simplify_blacklist.append(way_id_parts.id)
i += 1
continue
# skip and blacklist: non-linear way
if not all(
other_way_id_parts.id == way_id_parts.id #
for other_way_id_parts in way_ids_parts[i + 1 : i_end + 1]
):
simplify_blacklist.append(way_id_parts.id)
i += 1
continue
# ok to simplify
simplify_whitelist.add(way_id_parts.id)
i += way_id_parts.max_num
simplify_whitelist.difference_update(simplify_blacklist)
result = []
# pass 2, generate results
i = 0
while i < len(way_ids_parts):
way_id_parts = way_ids_parts[i]
if way_id_parts.id not in simplify_whitelist:
way_id = way_ids[i]
result.append(way_id)
i += 1
continue
# simplify
result.append(element_id(way_id_parts.id))
i += way_id_parts.max_num
return result
def get_relation_members(relation: dict) -> list[RelationMember]:
return [RelationMember(id=element_id(m['ref']), type=m['type'], role=m['role']) for m in relation['members']]
def sort_and_upgrade_members(route: FinalRoute, relation_members: list[RelationMember]) -> FinalRoute:
id_relation_member_map = {member.id: member for member in relation_members}
members = []
for i, collection in enumerate(route.busStops):
is_first = i == 0
is_last = i == len(route.busStops) - 1
if route.roundtrip:
suffix = ''
else:
suffix = '_entry_only' if is_first else ('_exit_only' if is_last else '')
stop_member = None
platform_member = None
if collection.stop is not None:
role = 'stop' + suffix
if (member := id_relation_member_map.get(collection.stop.id, None)) is not None:
if member.role.startswith(role):
role = member.role
stop_member = RelationMember(id=collection.stop.id, type=collection.stop.type, role=role)
members.append(stop_member)
if collection.platform is not None:
role = 'platform' + suffix
if (member := id_relation_member_map.get(collection.platform.id, None)) is not None:
if member.role.startswith(role):
role = member.role
platform_member = RelationMember(id=collection.platform.id, type=collection.platform.type, role=role)
members.append(platform_member)
if route.roundtrip and members:
# order: stop, platform
if platform_member is not None:
members.insert(0, platform_member)
if stop_member is not None:
members.insert(0, stop_member)
way_ids = [route_way.way.id for route_way in route.ways]
way_ids = _unsplit_way_ids(way_ids)
for way_id in way_ids:
role = ''
if (member := id_relation_member_map.get(way_id)) is not None:
if member.role not in {'route', 'forward', 'backward'}:
role = member.role
members.append(RelationMember(id=way_id, type='way', role=role))
return replace(route, members=tuple(members))
def _initialize_osm_change_structure() -> dict:
return {
'osmChange': {
'@version': 0.6,
'@generator': CREATED_BY,
'create': {
'way': [],
},
'modify': {'way': [], 'relation': []},
}
}
def _set_changeset_placeholder(data: dict, include_changeset_id: bool) -> None:
if include_changeset_id:
data['@changeset'] = CHANGESET_ID_PLACEHOLDER
else:
data.pop('@changeset', None)
# TODO: support restriction-type relations
def _update_relations_after_split(
ignore_relation_id: int,
split_ways: frozenset[int],
parents: QueryParentsResult,
native_id_element_ids_map: dict[int, dict[int, ElementId]],
id_way_map: dict[ElementId, FetchRelationElement],
element_id_unique_map: dict[ElementId, int],
unique_native_id_map: dict[int, int],
) -> list[dict]:
result: dict[int, dict] = {}
# iterate over the split ways
for way_id in split_ways:
element_ids = native_id_element_ids_map[way_id]
# assert unique relations
assert len(parents.id_relations_map[way_id]) == len({r['@id'] for r in parents.id_relations_map[way_id]})
# iterate over each related relation
for relation in parents.id_relations_map[way_id]:
if relation['@id'] == ignore_relation_id:
continue
result[relation['@id']] = relation
member_index = 0
while member_index < len(relation['member']):
member = relation['member'][member_index]
if not (member['@ref'] == way_id and member['@type'] == 'way'):
member_index += 1
continue
way_role = relation['member'][member_index]['@role']
split_ways_in_order = sorted(element_ids.items(), key=lambda x: x[0])
first_way_nd = id_way_map[split_ways_in_order[0][1]].nodes[0]
last_way_nd = id_way_map[split_ways_in_order[-1][1]].nodes[-1]
is_reversed = False
if (
member_index > 0
and (before_entry := relation['member'][member_index - 1])
and before_entry['@type'] == 'way'
):
before_way_id = before_entry['@ref']
before_way_id = unique_native_id_map.get(before_way_id, before_way_id)
before_way = parents.ways_map.get(before_way_id)
if before_way and not before_way.get('nd'):
before_way = None
else:
before_way = None
if (
member_index + 1 < len(relation['member'])
and (after_entry := relation['member'][member_index + 1])
and after_entry['@type'] == 'way'
):
after_way_id = after_entry['@ref']
after_way_id = unique_native_id_map.get(after_way_id, after_way_id)
after_way = parents.ways_map.get(after_way_id)
if after_way and not after_way.get('nd'):
after_way = None
else:
after_way = None
if first_way_nd != last_way_nd:
# reverse is only valid for non-circular ways, e.g. roundabouts
if before_way is not None:
if any(before_way['nd'][check]['@ref'] == last_way_nd for check in (0, -1)):
split_ways_in_order.reverse()
first_way_nd, last_way_nd = last_way_nd, first_way_nd
is_reversed = True
elif after_way is not None:
if any(after_way['nd'][check]['@ref'] == first_way_nd for check in (0, -1)):
split_ways_in_order.reverse()
first_way_nd, last_way_nd = last_way_nd, first_way_nd
is_reversed = True
# remove the original way from the relation member list
relation['member'].pop(member_index)
# replace the original way in the relation member list with the split ways
safe_to_insert = before_way is None
insert_count = 0
for _, element_id in islice(cycle(split_ways_in_order), len(split_ways_in_order) * 2):
element = id_way_map[element_id]
if not is_reversed:
first_element_nd, last_element_nd = element.nodes[0], element.nodes[-1]
else:
first_element_nd, last_element_nd = element.nodes[-1], element.nodes[0]
if not safe_to_insert:
safe_to_insert = any(before_way['nd'][check]['@ref'] == first_element_nd for check in (0, -1))
if not safe_to_insert:
continue
relation['member'].insert(
member_index,
{
'@type': 'way',
'@ref': element_id_unique_map.get(element_id, element_id),
'@role': way_role,
},
)
member_index += 1
insert_count += 1
# stop inserting if exhausted the split ways
if insert_count == len(split_ways_in_order):
break
# stop inserting if the next way is the after way
if after_way is not None:
if any(after_way['nd'][check]['@ref'] == last_element_nd for check in (0, -1)):
break
# fallback to dummy insert if none were inserted
if insert_count == 0:
print(f'π§ Warning: Could not insert split ways into relation {relation["@id"]} (way {way_id})')
for _, element_id in split_ways_in_order:
relation['member'].insert(
member_index,
{
'@type': 'way',
'@ref': element_id_unique_map.get(element_id, element_id),
'@role': way_role,
},
)
member_index += 1
insert_count += 1
return result.values()
async def build_osm_change(
relation_id: int, route: FinalRoute, include_changeset_id: bool, overpass: Overpass, osm: OpenStreetMap
) -> str:
split_ways: set[int] = set()
native_id_element_ids_map: dict[int, dict[int, ElementId]] = defaultdict(dict)
element_id_unique_map: dict[ElementId, int] = {}
unique_native_id_map: dict[int, int] = {}
next_unique_id: int = -1
# iterate over route members and check if they are split
for obj in chain(route.members, route.extraWaysToUpdate):
element_id = obj.id
element_id_parts = split_element_id(element_id)
if element_id_parts.extra_num is None:
continue
split_ways.add(element_id_parts.id)
native_id_element_ids_map[element_id_parts.id][element_id_parts.extra_num] = element_id
if element_id in element_id_unique_map:
continue
if element_id_parts.extra_num == 1:
element_id_unique_map[element_id] = element_id_parts.id
else:
element_id_unique_map[element_id] = next_unique_id
unique_native_id_map[next_unique_id] = element_id_parts.id
next_unique_id -= 1
for group in native_id_element_ids_map.values():
if (1 not in group) or len(group) != split_element_id(group[1]).max_num:
raise AssertionError(f'Split ways are not complete: {", ".join(f"{k}={v}" for k, v in group.items())}')
split_ways = frozenset(split_ways)
parents_task = asyncio.create_task(overpass.query_parents(split_ways)) if split_ways else None
ways_task = asyncio.create_task(osm.get_ways(map(str, split_ways), json=False)) if split_ways else None
relation_task = asyncio.create_task(osm.get_relation(relation_id, json=False))
result = _initialize_osm_change_structure()
if ways_task:
ways = await ways_task
id_way_map = dict(
chain(
((route_way.way.id, route_way.way) for route_way in route.ways),
((way.id, way) for way in route.extraWaysToUpdate),
)
)
# process fetched ways (split ways)
for way_data in ways:
way_id = int(way_data['@id'])
way_data.pop('@timestamp', None)
way_data.pop('@user', None)
way_data.pop('@uid', None)
_set_changeset_placeholder(way_data, include_changeset_id)
# perform splits
for extra_num, element_id in native_id_element_ids_map[way_id].items():
element_way = id_way_map[element_id]
new_data = way_data.copy()
new_data['nd'] = [{'@ref': node_id} for node_id in element_way.nodes]
if extra_num == 1:
action = 'modify'
# split conflict check
way_data_nd = way_data.get('nd')
if (
way_data_nd
and way_data_nd[0]['@ref'] == new_data['nd'][0]['@ref']
and way_data_nd[-1]['@ref'] == new_data['nd'][-1]['@ref']
):
raise HTTPException(
status.HTTP_409_CONFLICT,
f'Conflict: Way {way_id} was modified. Go back and click the relation reload button.',
)
else:
action = 'create'
new_data['@id'] = element_id_unique_map[element_id]
new_data.pop('@version', None)
result['osmChange'][action]['way'].append(new_data)
parents: QueryParentsResult = await parents_task
# update relations
parent_relations = _update_relations_after_split(
ignore_relation_id=relation_id,
split_ways=split_ways,
parents=parents,
native_id_element_ids_map=native_id_element_ids_map,
id_way_map=id_way_map,
element_id_unique_map=element_id_unique_map,
unique_native_id_map=unique_native_id_map,
)
for parent_relation in parent_relations:
# strip unnecessary data
parent_relation.pop('@timestamp', None)
parent_relation.pop('@user', None)
parent_relation.pop('@uid', None)
# update relation data
_set_changeset_placeholder(parent_relation, include_changeset_id)
result['osmChange']['modify']['relation'].append(parent_relation)
relation_data = await relation_task
# strip unnecessary data
relation_data.pop('@timestamp', None)
relation_data.pop('@user', None)
relation_data.pop('@uid', None)
# update relation data
_set_changeset_placeholder(relation_data, include_changeset_id)
relation_data['member'] = [
{'@type': member.type, '@ref': element_id_unique_map.get(member.id, member.id), '@role': member.role}
for member in route.members
]
result['osmChange']['modify']['relation'].append(relation_data)
return xmltodict.unparse(result, pretty=not include_changeset_id)