cityjson-lib 0.9.0

High-level CityJSON 2.0 read/write facade integrating JSON I/O
Documentation
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
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
//! Native workflow helpers for CityJSON models.
//!
//! The `subset` and `merge` semantics are ported from `cjio`, and the Rust
//! implementation here is the crate-owned native rewrite of those workflows.
//! Selection-driven extraction uses the opaque `ModelSelection` carrier.

use std::collections::hash_map::Entry;
use std::collections::{BTreeSet, HashMap, HashSet};

use crate::cityjson_types::resources::storage::OwnedStringStorage;
use crate::cityjson_types::v2_0::attributes::Attributes;
use crate::cityjson_types::v2_0::geometry::{
    Geometry, GeometryType, StoredGeometryInstance, StoredGeometryParts,
};
use crate::cityjson_types::v2_0::metadata::BBox;
use crate::cityjson_types::v2_0::{
    CityObject, CityObjectIdentifier, MaterialMap, Metadata, SemanticMap, TextureMap, Transform,
    VertexIndex,
};
use crate::cityjson_types::{
    CityModelType,
    prelude::{
        CityObjectHandle, GeometryHandle, GeometryTemplateHandle, MaterialHandle, SemanticHandle,
        TextureHandle,
    },
    v2_0::Extensions,
};
use crate::{CityModel, Error, Result, json};
use serde_json::Value;

type OwnedMetadata = Metadata<OwnedStringStorage>;
type OwnedExtensions = Extensions<OwnedStringStorage>;
type OwnedCityObject = CityObject<OwnedStringStorage>;
type OwnedGeometry = Geometry<u32, OwnedStringStorage>;

#[derive(Debug, Clone, PartialEq, Eq)]
enum CityObjectSelection {
    Whole,
    Partial(HashSet<GeometryHandle>),
}

/// Opaque selection carrier for selection/extraction workflows.
#[derive(Debug, Clone, Default, PartialEq, Eq)]
pub struct ModelSelection {
    cityobjects: HashMap<CityObjectHandle, CityObjectSelection>,
}

/// Context passed to cityobject-level selection predicates.
pub struct CityObjectSelectionContext<'a> {
    model: &'a CityModel,
    handle: CityObjectHandle,
    cityobject: &'a CityObject<OwnedStringStorage>,
}

impl<'a> CityObjectSelectionContext<'a> {
    pub fn model(&self) -> &'a CityModel {
        self.model
    }

    pub fn handle(&self) -> CityObjectHandle {
        self.handle
    }

    pub fn cityobject(&self) -> &'a CityObject<OwnedStringStorage> {
        self.cityobject
    }

    pub fn id(&self) -> &'a str {
        self.cityobject.id()
    }
}

/// Context passed to geometry-level selection predicates.
pub struct GeometrySelectionContext<'a> {
    model: &'a CityModel,
    cityobject_handle: CityObjectHandle,
    cityobject: &'a CityObject<OwnedStringStorage>,
    geometry_handle: GeometryHandle,
    geometry: &'a OwnedGeometry,
    geometry_index: usize,
}

impl<'a> GeometrySelectionContext<'a> {
    pub fn model(&self) -> &'a CityModel {
        self.model
    }

    pub fn cityobject_handle(&self) -> CityObjectHandle {
        self.cityobject_handle
    }

    pub fn cityobject(&self) -> &'a CityObject<OwnedStringStorage> {
        self.cityobject
    }

    pub fn cityobject_id(&self) -> &'a str {
        self.cityobject.id()
    }

    pub fn geometry_handle(&self) -> GeometryHandle {
        self.geometry_handle
    }

    pub fn geometry(&self) -> &'a OwnedGeometry {
        self.geometry
    }

    pub fn geometry_index(&self) -> usize {
        self.geometry_index
    }
}

impl ModelSelection {
    fn select_whole(&mut self, handle: CityObjectHandle) {
        self.cityobjects.insert(handle, CityObjectSelection::Whole);
    }

    fn select_geometry(
        &mut self,
        cityobject_handle: CityObjectHandle,
        geometry_handle: GeometryHandle,
    ) {
        match self.cityobjects.entry(cityobject_handle) {
            Entry::Vacant(entry) => {
                let mut geometries = HashSet::new();
                geometries.insert(geometry_handle);
                entry.insert(CityObjectSelection::Partial(geometries));
            }
            Entry::Occupied(mut entry) => match entry.get_mut() {
                CityObjectSelection::Whole => {}
                CityObjectSelection::Partial(geometries) => {
                    geometries.insert(geometry_handle);
                }
            },
        }
    }

    /// Expand the selection through parent and child relations.
    pub fn include_relatives(self, model: &CityModel) -> Result<Self> {
        let mut selection = self;
        let roots = selection.cityobjects.keys().copied().collect::<Vec<_>>();
        let relatives = collect_reachable_cityobjects(model, roots, true, true)?;

        for handle in relatives {
            selection
                .cityobjects
                .entry(handle)
                .or_insert(CityObjectSelection::Whole);
        }

        Ok(selection)
    }

    /// Combine two selections, preferring whole-cityobject selection.
    pub fn union(&self, other: &Self) -> Self {
        let mut selection = self.clone();

        for (handle, state) in &other.cityobjects {
            match selection.cityobjects.entry(*handle) {
                Entry::Vacant(entry) => {
                    entry.insert(state.clone());
                }
                Entry::Occupied(mut entry) => {
                    let merged = match (entry.get(), state) {
                        (CityObjectSelection::Whole, _) | (_, CityObjectSelection::Whole) => {
                            CityObjectSelection::Whole
                        }
                        (CityObjectSelection::Partial(lhs), CityObjectSelection::Partial(rhs)) => {
                            let geometries =
                                lhs.union(rhs).copied().collect::<HashSet<GeometryHandle>>();
                            CityObjectSelection::Partial(geometries)
                        }
                    };
                    entry.insert(merged);
                }
            }
        }

        selection
    }

    /// Keep only the overlap between two selections.
    pub fn intersection(&self, other: &Self) -> Self {
        let mut cityobjects = HashMap::new();

        for (handle, lhs_state) in &self.cityobjects {
            let Some(rhs_state) = other.cityobjects.get(handle) else {
                continue;
            };

            let merged = match (lhs_state, rhs_state) {
                (CityObjectSelection::Whole, CityObjectSelection::Whole) => {
                    CityObjectSelection::Whole
                }
                (CityObjectSelection::Whole, CityObjectSelection::Partial(geometries))
                | (CityObjectSelection::Partial(geometries), CityObjectSelection::Whole) => {
                    CityObjectSelection::Partial(geometries.clone())
                }
                (CityObjectSelection::Partial(lhs), CityObjectSelection::Partial(rhs)) => {
                    let geometries = lhs.intersection(rhs).copied().collect::<HashSet<_>>();
                    if geometries.is_empty() {
                        continue;
                    }
                    CityObjectSelection::Partial(geometries)
                }
            };

            cityobjects.insert(*handle, merged);
        }

        Self { cityobjects }
    }

    /// Return `true` when no CityObjects are selected.
    pub fn is_empty(&self) -> bool {
        self.cityobjects.is_empty()
    }
}

fn import_error(message: impl Into<String>) -> Error {
    Error::Import(message.into())
}

#[derive(Debug, Clone, PartialEq)]
enum TransformMergeState {
    Empty,
    Present(Transform),
    Cleared,
}

impl TransformMergeState {
    fn from_model(model: &CityModel) -> Self {
        match model.transform() {
            Some(transform) => Self::Present(transform.clone()),
            None => Self::Empty,
        }
    }
}

fn reconcile_transform_state(
    current: TransformMergeState,
    source: Option<&Transform>,
) -> TransformMergeState {
    match (current, source) {
        (TransformMergeState::Empty, None) => TransformMergeState::Empty,
        (TransformMergeState::Empty, Some(transform)) => {
            TransformMergeState::Present(transform.clone())
        }
        (TransformMergeState::Present(transform), None) => TransformMergeState::Present(transform),
        (TransformMergeState::Present(transform), Some(source_transform))
            if transform == *source_transform =>
        {
            TransformMergeState::Present(transform)
        }
        (TransformMergeState::Cleared, _) | (TransformMergeState::Present(_), Some(_)) => {
            TransformMergeState::Cleared
        }
    }
}

fn strip_transform(model: &CityModel) -> Result<CityModel> {
    let mut untransformed = model.clone();
    untransformed.transform_mut().set_scale([1.0, 1.0, 1.0]);
    untransformed.transform_mut().set_translate([0.0, 0.0, 0.0]);

    let mut root = serde_json::from_slice::<Value>(&json::to_vec(&untransformed)?)
        .map_err(|error| import_error(error.to_string()))?;
    let Value::Object(root) = &mut root else {
        return Err(import_error("serialized CityJSON root is not an object"));
    };
    root.remove("transform");
    let bytes = serde_json::to_vec(&root).map_err(|error| import_error(error.to_string()))?;
    match model.type_citymodel() {
        CityModelType::CityJSON => json::from_slice(&bytes),
        CityModelType::CityJSONFeature => json::from_feature_slice(&bytes),
        other => Err(Error::UnsupportedType(other.to_string())),
    }
}

fn apply_transform_state(target: &mut CityModel, state: &TransformMergeState) -> Result<()> {
    match state {
        TransformMergeState::Empty => {
            if target.transform().is_some() {
                *target = strip_transform(target)?;
            }
        }
        TransformMergeState::Present(transform) => {
            if target.transform().is_none() {
                *target.transform_mut() = transform.clone();
            } else if target.transform() != Some(transform) {
                *target = strip_transform(target)?;
                *target.transform_mut() = transform.clone();
            }
        }
        TransformMergeState::Cleared => {
            if target.transform().is_some() {
                *target = strip_transform(target)?;
            }
        }
    }

    Ok(())
}

fn append_kind_compatible(target_kind: CityModelType, source_kind: CityModelType) -> bool {
    target_kind == source_kind
        || (target_kind == CityModelType::CityJSON && source_kind == CityModelType::CityJSONFeature)
}

fn union_bbox(lhs: BBox, rhs: BBox) -> BBox {
    BBox::new(
        lhs.min_x().min(rhs.min_x()),
        lhs.min_y().min(rhs.min_y()),
        lhs.min_z().min(rhs.min_z()),
        lhs.max_x().max(rhs.max_x()),
        lhs.max_y().max(rhs.max_y()),
        lhs.max_z().max(rhs.max_z()),
    )
}

fn merge_attributes(
    target: &mut Attributes<OwnedStringStorage>,
    source: &Attributes<OwnedStringStorage>,
) {
    for (key, value) in source.iter() {
        target.insert(key.clone(), value.clone());
    }
}

fn merge_cityobject_extent(target: &mut OwnedCityObject, source: &OwnedCityObject) {
    match (
        target.geographical_extent().copied(),
        source.geographical_extent().copied(),
    ) {
        (None, Some(extent)) => target.set_geographical_extent(Some(extent)),
        (Some(lhs), Some(rhs)) if lhs != rhs => {
            target.set_geographical_extent(Some(union_bbox(lhs, rhs)))
        }
        _ => {}
    }
}

fn merge_metadata(target: &mut OwnedMetadata, source: &OwnedMetadata) {
    if target.geographical_extent().is_none()
        && let Some(extent) = source.geographical_extent().copied()
    {
        target.set_geographical_extent(extent);
    } else if let (Some(lhs), Some(rhs)) = (
        target.geographical_extent().copied(),
        source.geographical_extent().copied(),
    ) && lhs != rhs
    {
        target.set_geographical_extent(union_bbox(lhs, rhs));
    }

    if target.identifier().is_none()
        && let Some(identifier) = source.identifier().cloned()
    {
        target.set_identifier(identifier);
    }

    if target.reference_date().is_none()
        && let Some(date) = source.reference_date().cloned()
    {
        target.set_reference_date(date);
    }

    if target.reference_system().is_none()
        && let Some(crs) = source.reference_system().cloned()
    {
        target.set_reference_system(crs);
    }

    if target.title().is_none()
        && let Some(title) = source.title()
    {
        target.set_title(title.to_owned());
    }

    if target.point_of_contact().is_none()
        && let Some(contact) = source.point_of_contact().cloned()
    {
        target.set_point_of_contact(Some(contact));
    }

    if let Some(extra) = source.extra() {
        let target_extra = target.extra_mut();
        for (key, value) in extra.iter() {
            target_extra.insert(key.clone(), value.clone());
        }
    }
}

fn merge_root_extensions(target: &mut OwnedExtensions, source: &OwnedExtensions) {
    for extension in source {
        target.add(extension.clone());
    }
}

fn remap_vertex_indices(
    boundary: &crate::cityjson_types::v2_0::boundary::Boundary<u32>,
    vertex_map: &[VertexIndex<u32>],
) -> Result<crate::cityjson_types::v2_0::boundary::Boundary<u32>> {
    let mut boundary = boundary.clone();
    let remapped = boundary.vertices().iter().map(|index| {
        vertex_map
            .get(index.to_usize())
            .copied()
            .ok_or_else(|| import_error(format!("vertex index {} is out of range", index.value())))
    });
    boundary.set_vertices_from_iter(remapped.collect::<Result<Vec<_>>>()?);
    Ok(boundary)
}

fn remap_texture_map(
    map: &crate::cityjson_types::v2_0::geometry::TextureMapView<'_, u32>,
    uv_map: &[VertexIndex<u32>],
    texture_map: &HashMap<TextureHandle, TextureHandle>,
) -> Result<TextureMap<u32>> {
    let mut remapped = TextureMap::new();

    for vertex in map.vertices() {
        let mapped = vertex
            .map(|index| {
                uv_map.get(index.to_usize()).copied().ok_or_else(|| {
                    import_error(format!("uv vertex index {} is out of range", index.value()))
                })
            })
            .transpose()?;
        remapped.add_vertex(mapped);
    }

    for ring in map.rings() {
        remapped.add_ring(*ring);
    }

    for texture in map.ring_textures() {
        remapped.add_ring_texture(
            texture.map(|handle| texture_map.get(&handle).copied().unwrap_or(handle)),
        );
    }

    Ok(remapped)
}

fn remap_material_map<'a, I, J, K>(
    points: I,
    linestrings: J,
    surfaces: K,
    material_map: &HashMap<MaterialHandle, MaterialHandle>,
) -> MaterialMap<u32>
where
    I: IntoIterator<Item = &'a Option<MaterialHandle>>,
    J: IntoIterator<Item = &'a Option<MaterialHandle>>,
    K: IntoIterator<Item = &'a Option<MaterialHandle>>,
{
    let mut remapped = MaterialMap::new();

    for item in points {
        remapped.add_point(match item {
            Some(handle) => Some(material_map.get(handle).copied().unwrap_or(*handle)),
            None => None,
        });
    }
    for item in linestrings {
        remapped.add_linestring(match item {
            Some(handle) => Some(material_map.get(handle).copied().unwrap_or(*handle)),
            None => None,
        });
    }
    for item in surfaces {
        remapped.add_surface(match item {
            Some(handle) => Some(material_map.get(handle).copied().unwrap_or(*handle)),
            None => None,
        });
    }

    remapped
}

fn remap_semantic_map<'a, I, J, K>(
    points: I,
    linestrings: J,
    surfaces: K,
    semantic_map: &HashMap<SemanticHandle, SemanticHandle>,
) -> SemanticMap<u32>
where
    I: IntoIterator<Item = &'a Option<SemanticHandle>>,
    J: IntoIterator<Item = &'a Option<SemanticHandle>>,
    K: IntoIterator<Item = &'a Option<SemanticHandle>>,
{
    let mut remapped = SemanticMap::new();

    for item in points {
        remapped.add_point(match item {
            Some(handle) => Some(semantic_map.get(handle).copied().unwrap_or(*handle)),
            None => None,
        });
    }
    for item in linestrings {
        remapped.add_linestring(match item {
            Some(handle) => Some(semantic_map.get(handle).copied().unwrap_or(*handle)),
            None => None,
        });
    }
    for item in surfaces {
        remapped.add_surface(match item {
            Some(handle) => Some(semantic_map.get(handle).copied().unwrap_or(*handle)),
            None => None,
        });
    }

    remapped
}

fn remap_geometry(
    geometry: &OwnedGeometry,
    vertex_map: &[VertexIndex<u32>],
    template_map: &HashMap<GeometryTemplateHandle, GeometryTemplateHandle>,
    semantic_map: &HashMap<SemanticHandle, SemanticHandle>,
    material_map: &HashMap<MaterialHandle, MaterialHandle>,
    texture_map: &HashMap<TextureHandle, TextureHandle>,
    uv_map: &[VertexIndex<u32>],
) -> Result<OwnedGeometry> {
    let stored_parts = if let Some(instance) = geometry.instance() {
        let template = template_map
            .get(&instance.template())
            .copied()
            .ok_or_else(|| {
                import_error(format!(
                    "missing remap for geometry template {}",
                    instance.template()
                ))
            })?;
        Geometry::from_stored_parts(StoredGeometryParts {
            type_geometry: GeometryType::GeometryInstance,
            lod: None,
            boundaries: None,
            semantics: None,
            materials: None,
            textures: None,
            instance: Some(StoredGeometryInstance {
                template,
                reference_point: *vertex_map
                    .get(instance.reference_point().to_usize())
                    .ok_or_else(|| {
                        import_error(format!(
                            "vertex index {} is out of range",
                            instance.reference_point().value()
                        ))
                    })?,
                transformation: instance.transformation(),
            }),
        })
    } else {
        let boundaries = geometry
            .boundaries()
            .map(|boundary| remap_vertex_indices(boundary, vertex_map))
            .transpose()?;

        let semantics = geometry.semantics().map(|theme| {
            let points = theme.points();
            let linestrings = theme.linestrings();
            let surfaces = theme.surfaces();
            remap_semantic_map(
                points.iter(),
                linestrings.iter(),
                surfaces.iter(),
                semantic_map,
            )
        });

        let materials = geometry.materials().map(|themes| {
            themes
                .iter()
                .map(|(name, theme)| {
                    let points = theme.points();
                    let linestrings = theme.linestrings();
                    let surfaces = theme.surfaces();
                    (
                        name.clone(),
                        remap_material_map(
                            points.iter(),
                            linestrings.iter(),
                            surfaces.iter(),
                            material_map,
                        ),
                    )
                })
                .collect::<Vec<_>>()
        });

        let textures = geometry
            .textures()
            .map(|themes| {
                themes
                    .iter()
                    .map(|(name, theme)| {
                        remap_texture_map(&theme, uv_map, texture_map)
                            .map(|map| (name.clone(), map))
                    })
                    .collect::<Result<Vec<_>>>()
            })
            .transpose()?;

        Geometry::from_stored_parts(StoredGeometryParts {
            type_geometry: *geometry.type_geometry(),
            lod: geometry.lod().copied(),
            boundaries,
            semantics,
            materials,
            textures,
            instance: None,
        })
    };

    Ok(stored_parts)
}

fn append_vertices(target: &mut CityModel, source: &CityModel) -> Result<Vec<VertexIndex<u32>>> {
    let mut map = Vec::with_capacity(source.vertices().len());
    for vertex in source.vertices().as_slice() {
        map.push(target.add_vertex(*vertex)?);
    }
    Ok(map)
}

fn append_template_vertices(
    target: &mut CityModel,
    source: &CityModel,
) -> Result<Vec<VertexIndex<u32>>> {
    let mut map = Vec::with_capacity(source.template_vertices().len());
    for vertex in source.template_vertices().as_slice() {
        map.push(target.add_template_vertex(*vertex)?);
    }
    Ok(map)
}

fn append_uv_vertices(target: &mut CityModel, source: &CityModel) -> Result<Vec<VertexIndex<u32>>> {
    let mut map = Vec::with_capacity(source.vertices_texture().len());
    for uv in source.vertices_texture().as_slice() {
        map.push(target.add_uv_coordinate((*uv).clone())?);
    }
    Ok(map)
}

fn append_semantics(
    target: &mut CityModel,
    source: &CityModel,
) -> Result<HashMap<SemanticHandle, SemanticHandle>> {
    let mut map = HashMap::with_capacity(source.semantic_count());
    for (handle, semantic) in source.iter_semantics() {
        map.insert(handle, target.add_semantic(semantic.clone())?);
    }
    Ok(map)
}

fn append_materials(
    target: &mut CityModel,
    source: &CityModel,
) -> Result<HashMap<MaterialHandle, MaterialHandle>> {
    let mut map = HashMap::with_capacity(source.material_count());
    for (handle, material) in source.iter_materials() {
        map.insert(handle, target.add_material(material.clone())?);
    }
    Ok(map)
}

fn append_textures(
    target: &mut CityModel,
    source: &CityModel,
) -> Result<HashMap<TextureHandle, TextureHandle>> {
    let mut map = HashMap::with_capacity(source.texture_count());
    for (handle, texture) in source.iter_textures() {
        map.insert(handle, target.add_texture(texture.clone())?);
    }
    Ok(map)
}

fn append_geometry_templates(
    target: &mut CityModel,
    source: &CityModel,
    template_vertex_map: &[VertexIndex<u32>],
    template_map: &HashMap<GeometryTemplateHandle, GeometryTemplateHandle>,
    semantic_map: &HashMap<SemanticHandle, SemanticHandle>,
    material_map: &HashMap<MaterialHandle, MaterialHandle>,
    texture_map: &HashMap<TextureHandle, TextureHandle>,
    uv_map: &[VertexIndex<u32>],
) -> Result<HashMap<GeometryTemplateHandle, GeometryTemplateHandle>> {
    let mut map = HashMap::with_capacity(source.geometry_template_count());
    for (handle, geometry) in source.iter_geometry_templates() {
        let remapped = remap_geometry(
            geometry,
            template_vertex_map,
            template_map,
            semantic_map,
            material_map,
            texture_map,
            uv_map,
        )?;
        map.insert(handle, target.add_geometry_template(remapped)?);
    }
    Ok(map)
}

fn append_geometries(
    target: &mut CityModel,
    source: &CityModel,
    vertex_map: &[VertexIndex<u32>],
    template_map: &HashMap<GeometryTemplateHandle, GeometryTemplateHandle>,
    semantic_map: &HashMap<SemanticHandle, SemanticHandle>,
    material_map: &HashMap<MaterialHandle, MaterialHandle>,
    texture_map: &HashMap<TextureHandle, TextureHandle>,
    uv_map: &[VertexIndex<u32>],
) -> Result<HashMap<GeometryHandle, GeometryHandle>> {
    let mut map = HashMap::with_capacity(source.geometry_count());
    for (handle, geometry) in source.iter_geometries() {
        let remapped = remap_geometry(
            geometry,
            vertex_map,
            template_map,
            semantic_map,
            material_map,
            texture_map,
            uv_map,
        )?;
        map.insert(handle, target.add_geometry(remapped)?);
    }
    Ok(map)
}

fn merge_cityobject(
    target: &mut OwnedCityObject,
    source: &OwnedCityObject,
    cityobject_map: &HashMap<CityObjectHandle, CityObjectHandle>,
    geometry_map: &HashMap<GeometryHandle, GeometryHandle>,
) -> Result<()> {
    if target.type_cityobject() != source.type_cityobject() {
        return Err(import_error(format!(
            "conflicting CityObject types for '{}'",
            target.id()
        )));
    }

    if let Some(attributes) = source.attributes() {
        merge_attributes(target.attributes_mut(), attributes);
    }
    merge_cityobject_extent(target, source);

    if let Some(extra) = source.extra() {
        let target_extra = target.extra_mut();
        for (key, value) in extra.iter() {
            target_extra.insert(key.clone(), value.clone());
        }
    }

    if let Some(geometry_handles) = source.geometry() {
        let mut target_geometry = target
            .geometry()
            .map(|items| items.to_vec())
            .unwrap_or_default();
        for geometry in geometry_handles {
            let mapped = geometry_map.get(geometry).copied().ok_or_else(|| {
                import_error(format!(
                    "missing remap for geometry {}",
                    geometry.raw_parts().0
                ))
            })?;
            if !target_geometry.contains(&mapped) {
                target.add_geometry(mapped);
                target_geometry.push(mapped);
            }
        }
    }

    if let Some(children) = source.children() {
        let mut existing = target
            .children()
            .map(|items| items.to_vec())
            .unwrap_or_default();
        for child in children {
            let mapped = cityobject_map.get(child).copied().ok_or_else(|| {
                import_error(format!(
                    "missing remap for cityobject {}",
                    child.raw_parts().0
                ))
            })?;
            if !existing.contains(&mapped) {
                target.add_child(mapped);
                existing.push(mapped);
            }
        }
    }

    if let Some(parents) = source.parents() {
        let mut existing = target
            .parents()
            .map(|items| items.to_vec())
            .unwrap_or_default();
        for parent in parents {
            let mapped = cityobject_map.get(parent).copied().ok_or_else(|| {
                import_error(format!(
                    "missing remap for cityobject {}",
                    parent.raw_parts().0
                ))
            })?;
            if !existing.contains(&mapped) {
                target.add_parent(mapped);
                existing.push(mapped);
            }
        }
    }

    Ok(())
}

fn merge_one(
    target: &mut CityModel,
    source: &CityModel,
    transform_state: &mut TransformMergeState,
) -> Result<()> {
    if !append_kind_compatible(target.type_citymodel(), source.type_citymodel()) {
        return Err(import_error(
            "model merge currently requires compatible root types",
        ));
    }

    *transform_state = reconcile_transform_state(transform_state.clone(), source.transform());

    if target.metadata().is_none() {
        if let Some(metadata) = source.metadata() {
            *target.metadata_mut() = metadata.clone();
        }
    } else if let Some(source_metadata) = source.metadata() {
        merge_metadata(target.metadata_mut(), source_metadata);
    }

    if target.extra().is_none() {
        if let Some(extra) = source.extra() {
            *target.extra_mut() = extra.clone();
        }
    } else if let Some(extra) = source.extra() {
        let target_extra = target.extra_mut();
        for (key, value) in extra.iter() {
            target_extra.insert(key.clone(), value.clone());
        }
    }

    if target.extensions().is_none() {
        if let Some(extensions) = source.extensions() {
            *target.extensions_mut() = extensions.clone();
        }
    } else if let Some(extensions) = source.extensions() {
        merge_root_extensions(target.extensions_mut(), extensions);
    }

    if target.default_material_theme().is_none()
        && let Some(theme) = source.default_material_theme().cloned()
    {
        target.set_default_material_theme(Some(theme));
    }

    if target.default_texture_theme().is_none()
        && let Some(theme) = source.default_texture_theme().cloned()
    {
        target.set_default_texture_theme(Some(theme));
    }

    let vertex_map = append_vertices(target, source)?;
    let template_vertex_map = append_template_vertices(target, source)?;
    let uv_map = append_uv_vertices(target, source)?;
    let semantic_map = append_semantics(target, source)?;
    let material_map = append_materials(target, source)?;
    let texture_map = append_textures(target, source)?;
    let empty_template_map: HashMap<GeometryTemplateHandle, GeometryTemplateHandle> =
        HashMap::new();
    let template_map = append_geometry_templates(
        target,
        source,
        &template_vertex_map,
        &empty_template_map,
        &semantic_map,
        &material_map,
        &texture_map,
        &uv_map,
    )?;
    let geometry_map = append_geometries(
        target,
        source,
        &vertex_map,
        &template_map,
        &semantic_map,
        &material_map,
        &texture_map,
        &uv_map,
    )?;

    let mut cityobject_map = HashMap::with_capacity(source.cityobjects().len());
    for (handle, source_cityobject) in source.cityobjects().iter() {
        if let Some(existing) = target
            .cityobjects()
            .iter()
            .find(|(_, cityobject)| cityobject.id() == source_cityobject.id())
            .map(|(handle, _)| handle)
        {
            cityobject_map.insert(handle, existing);
            continue;
        }

        let placeholder = CityObject::new(
            CityObjectIdentifier::new(source_cityobject.id().to_owned()),
            source_cityobject.type_cityobject().clone(),
        );
        let new_handle = target.cityobjects_mut().add(placeholder)?;
        cityobject_map.insert(handle, new_handle);
    }

    if target.id().is_none()
        && let Some(source_id) = source.id()
        && let Some(mapped) = cityobject_map.get(&source_id).copied()
    {
        target.set_id(Some(mapped));
    }

    for (handle, source_cityobject) in source.cityobjects().iter() {
        let target_handle = cityobject_map.get(&handle).copied().ok_or_else(|| {
            import_error(format!(
                "missing remap for cityobject {}",
                source_cityobject.id()
            ))
        })?;
        let target_cityobject =
            target
                .cityobjects_mut()
                .get_mut(target_handle)
                .ok_or_else(|| {
                    import_error(format!(
                        "missing target cityobject for {}",
                        source_cityobject.id()
                    ))
                })?;
        merge_cityobject(
            target_cityobject,
            source_cityobject,
            &cityobject_map,
            &geometry_map,
        )?;
    }

    Ok(())
}

pub fn cleanup(model: &CityModel) -> Result<CityModel> {
    cityjson_json::cleanup(model).map_err(Error::from)
}

fn collect_reachable_cityobjects<I>(
    model: &CityModel,
    roots: I,
    include_parents: bool,
    include_children: bool,
) -> Result<HashSet<CityObjectHandle>>
where
    I: IntoIterator<Item = CityObjectHandle>,
{
    let mut selected = HashSet::new();
    let mut stack = roots.into_iter().collect::<Vec<_>>();

    while let Some(handle) = stack.pop() {
        let cityobject = model.cityobjects().get(handle).ok_or_else(|| {
            import_error(format!(
                "missing CityObject handle in traversal: {handle:?}"
            ))
        })?;
        if !selected.insert(handle) {
            continue;
        }

        if include_children && let Some(children) = cityobject.children() {
            stack.extend(children.iter().copied());
        }

        if include_parents && let Some(parents) = cityobject.parents() {
            stack.extend(parents.iter().copied());
        }
    }

    Ok(selected)
}

fn selected_geometry_handles(
    model: &CityModel,
    cityobject: &OwnedCityObject,
    state: &CityObjectSelection,
) -> Result<Vec<GeometryHandle>> {
    match state {
        CityObjectSelection::Whole => {
            let Some(original_geometry) = cityobject.geometry() else {
                return Ok(Vec::new());
            };

            let mut selected = Vec::with_capacity(original_geometry.len());
            for geometry in original_geometry {
                model.get_geometry(*geometry).ok_or_else(|| {
                    import_error(format!(
                        "selected geometry handle {:?} is missing from the source model",
                        geometry
                    ))
                })?;
                selected.push(*geometry);
            }

            Ok(selected)
        }
        CityObjectSelection::Partial(geometry_handles) => {
            let Some(original_geometry) = cityobject.geometry() else {
                if geometry_handles.is_empty() {
                    return Ok(Vec::new());
                }

                let missing =
                    geometry_handles.iter().copied().next().expect(
                        "partial selection with missing geometry requires at least one handle",
                    );
                return Err(import_error(format!(
                    "selected geometry handle {:?} is missing from CityObject {}",
                    missing,
                    cityobject.id()
                )));
            };

            let available = original_geometry.iter().copied().collect::<HashSet<_>>();
            for geometry in geometry_handles {
                if !available.contains(geometry) {
                    return Err(import_error(format!(
                        "selected geometry handle {:?} is missing from CityObject {}",
                        geometry,
                        cityobject.id()
                    )));
                }
            }

            let mut selected = Vec::with_capacity(geometry_handles.len());
            for geometry in original_geometry {
                if geometry_handles.contains(geometry) {
                    model.get_geometry(*geometry).ok_or_else(|| {
                        import_error(format!(
                            "selected geometry handle {:?} is missing from the source model",
                            geometry
                        ))
                    })?;
                    selected.push(*geometry);
                }
            }

            Ok(selected)
        }
    }
}

fn rebuild_model_with_selection(
    model: &CityModel,
    selection: &ModelSelection,
) -> Result<CityModel> {
    let mut result = model.clone();
    result.clear_cityobjects();

    let mut old_to_new = HashMap::with_capacity(selection.cityobjects.len());
    let mut kept = HashSet::with_capacity(selection.cityobjects.len());

    for (handle, cityobject) in model.cityobjects().iter() {
        let Some(state) = selection.cityobjects.get(&handle) else {
            continue;
        };

        let geometry_handles = selected_geometry_handles(model, cityobject, state)?;
        if matches!(state, CityObjectSelection::Partial(_)) && geometry_handles.is_empty() {
            continue;
        }

        let mut cloned = cityobject.clone();
        cloned.clear_children();
        cloned.clear_parents();
        cloned.clear_geometry();
        for geometry in &geometry_handles {
            cloned.add_geometry(*geometry);
        }
        let new_handle = result.cityobjects_mut().add(cloned)?;
        old_to_new.insert(handle, new_handle);
        kept.insert(handle);
    }

    for (handle, cityobject) in model.cityobjects().iter() {
        if !kept.contains(&handle) {
            continue;
        }

        let target_handle = *old_to_new.get(&handle).ok_or_else(|| {
            import_error(format!("missing remap for CityObject {}", cityobject.id()))
        })?;
        let target = result
            .cityobjects_mut()
            .get_mut(target_handle)
            .ok_or_else(|| {
                import_error(format!("missing target CityObject {}", cityobject.id()))
            })?;

        if let Some(children) = cityobject.children() {
            for child in children {
                model.cityobjects().get(*child).ok_or_else(|| {
                    import_error(format!("missing child CityObject handle {child:?}"))
                })?;
                if let Some(mapped) = old_to_new.get(child).copied() {
                    target.add_child(mapped);
                }
            }
        }

        if let Some(parents) = cityobject.parents() {
            for parent in parents {
                model.cityobjects().get(*parent).ok_or_else(|| {
                    import_error(format!("missing parent CityObject handle {parent:?}"))
                })?;
                if let Some(mapped) = old_to_new.get(parent).copied() {
                    target.add_parent(mapped);
                }
            }
        }
    }

    if let Some(root) = select_feature_root(model, &kept)? {
        let mapped_root = old_to_new.get(&root).copied().ok_or_else(|| {
            import_error("feature root selected for rebuild does not exist in the rebuilt model")
        })?;
        result.set_id(Some(mapped_root));
    }

    Ok(result)
}

fn rebuild_model_with_cityobjects(
    model: &CityModel,
    selected: &HashSet<CityObjectHandle>,
) -> Result<CityModel> {
    let mut result = model.clone();
    result.clear_cityobjects();

    let mut old_to_new = HashMap::with_capacity(selected.len());
    for (handle, cityobject) in model.cityobjects().iter() {
        if !selected.contains(&handle) {
            continue;
        }

        let mut cloned = cityobject.clone();
        cloned.clear_children();
        cloned.clear_parents();
        let new_handle = result.cityobjects_mut().add(cloned)?;
        old_to_new.insert(handle, new_handle);
    }

    for (handle, cityobject) in model.cityobjects().iter() {
        if !selected.contains(&handle) {
            continue;
        }

        let target_handle = *old_to_new.get(&handle).ok_or_else(|| {
            import_error(format!("missing remap for CityObject {}", cityobject.id()))
        })?;
        let target = result
            .cityobjects_mut()
            .get_mut(target_handle)
            .ok_or_else(|| {
                import_error(format!("missing target CityObject {}", cityobject.id()))
            })?;

        if let Some(children) = cityobject.children() {
            for child in children {
                model.cityobjects().get(*child).ok_or_else(|| {
                    import_error(format!("missing child CityObject handle {child:?}"))
                })?;
                if let Some(mapped) = old_to_new.get(child).copied() {
                    target.add_child(mapped);
                }
            }
        }

        if let Some(parents) = cityobject.parents() {
            for parent in parents {
                model.cityobjects().get(*parent).ok_or_else(|| {
                    import_error(format!("missing parent CityObject handle {parent:?}"))
                })?;
                if let Some(mapped) = old_to_new.get(parent).copied() {
                    target.add_parent(mapped);
                }
            }
        }
    }

    if let Some(root) = select_feature_root(model, selected)? {
        let mapped_root = old_to_new.get(&root).copied().ok_or_else(|| {
            import_error("feature root selected for rebuild does not exist in the rebuilt model")
        })?;
        result.set_id(Some(mapped_root));
    }

    Ok(result)
}

fn select_feature_root(
    model: &CityModel,
    selected: &HashSet<CityObjectHandle>,
) -> Result<Option<CityObjectHandle>> {
    let Some(root) = model.id() else {
        return Ok(None);
    };

    model
        .cityobjects()
        .get(root)
        .ok_or_else(|| import_error("feature root references a missing CityObject"))?;

    if selected.contains(&root) {
        return Ok(Some(root));
    }

    for (handle, cityobject) in model.cityobjects().iter() {
        if !selected.contains(&handle) {
            continue;
        }

        let is_parentless = cityobject
            .parents()
            .is_none_or(|parents| parents.iter().all(|parent| !selected.contains(parent)));
        if is_parentless {
            return Ok(Some(handle));
        }
    }

    Err(import_error(
        "feature root was removed and no parentless CityObject remained",
    ))
}

pub fn subset<'a, I>(model: &CityModel, cityobject_ids: I, exclude: bool) -> Result<CityModel>
where
    I: IntoIterator<Item = &'a str>,
{
    let ids = cityobject_ids
        .into_iter()
        .map(str::to_owned)
        .collect::<BTreeSet<_>>();
    if ids.is_empty() {
        return Err(import_error(
            "subset requires at least one CityObject identifier",
        ));
    }

    let id_to_handle = model
        .cityobjects()
        .iter()
        .map(|(handle, cityobject)| (cityobject.id().to_owned(), handle))
        .collect::<HashMap<_, _>>();

    let mut roots = Vec::new();
    let mut matched_any = false;

    for id in &ids {
        if let Some(handle) = id_to_handle.get(id).copied() {
            matched_any = true;
            roots.push(handle);
        }
    }

    if !matched_any {
        return Err(import_error("subset selection matched no CityObjects"));
    }

    let mut selected = collect_reachable_cityobjects(model, roots, false, true)?;

    if exclude {
        let excluded = selected;
        selected = model
            .cityobjects()
            .iter()
            .map(|(handle, _)| handle)
            .filter(|handle| !excluded.contains(handle))
            .collect();
    }

    rebuild_model_with_cityobjects(model, &selected)
}

/// Build a CityObject selection by evaluating a predicate over each CityObject.
pub fn select_cityobjects<F>(model: &CityModel, mut predicate: F) -> Result<ModelSelection>
where
    F: FnMut(CityObjectSelectionContext<'_>) -> bool,
{
    let mut selection = ModelSelection::default();

    for (handle, cityobject) in model.cityobjects().iter() {
        if predicate(CityObjectSelectionContext {
            model,
            handle,
            cityobject,
        }) {
            selection.select_whole(handle);
        }
    }

    Ok(selection)
}

/// Build a geometry selection by evaluating a predicate over every referenced geometry.
pub fn select_geometries<F>(model: &CityModel, mut predicate: F) -> Result<ModelSelection>
where
    F: FnMut(GeometrySelectionContext<'_>) -> bool,
{
    let mut selection = ModelSelection::default();

    for (cityobject_handle, cityobject) in model.cityobjects().iter() {
        let Some(geometry_handles) = cityobject.geometry() else {
            continue;
        };

        for (geometry_index, geometry_handle) in geometry_handles.iter().copied().enumerate() {
            let geometry = model.get_geometry(geometry_handle).ok_or_else(|| {
                import_error(format!(
                    "geometry handle {:?} referenced by CityObject {} is missing from the source model",
                    geometry_handle,
                    cityobject.id()
                ))
            })?;

            if predicate(GeometrySelectionContext {
                model,
                cityobject_handle,
                cityobject,
                geometry_handle,
                geometry,
                geometry_index,
            }) {
                selection.select_geometry(cityobject_handle, geometry_handle);
            }
        }
    }

    Ok(selection)
}

/// Rebuild a model from a selection.
pub fn extract(model: &CityModel, selection: &ModelSelection) -> Result<CityModel> {
    rebuild_model_with_selection(model, selection)
}

pub fn append(target: &mut CityModel, source: &CityModel) -> Result<()> {
    let mut transform_state = TransformMergeState::from_model(target);
    merge_one(target, source, &mut transform_state)?;
    apply_transform_state(target, &transform_state)
}

pub fn merge<I>(models: I) -> Result<CityModel>
where
    I: IntoIterator<Item = CityModel>,
{
    let mut models = models.into_iter();
    let Some(mut merged) = models.next() else {
        return Err(import_error("merge requires at least one model"));
    };

    let mut transform_state = TransformMergeState::from_model(&merged);

    for model in models {
        merge_one(&mut merged, &model, &mut transform_state)?;
    }

    apply_transform_state(&mut merged, &transform_state)?;

    Ok(merged)
}

#[cfg(test)]
mod tests {
    use super::*;

    fn transformed_feature(id: &str, translate_x: f64) -> CityModel {
        let bytes = format!(
            r#"{{
                "type":"CityJSONFeature",
                "id":"{id}",
                "transform":{{"scale":[1.0,1.0,1.0],"translate":[{translate_x},0.0,0.0]}},
                "CityObjects":{{
                    "{id}":{{
                        "type":"Building",
                        "geometry":[{{"type":"MultiSurface","lod":"1","boundaries":[[[0,1,2]]]}}]
                    }}
                }},
                "vertices":[[0,0,0],[1,0,0],[0,1,0]]
            }}"#
        );
        json::from_feature_slice(bytes.as_bytes()).expect("feature should parse")
    }

    #[test]
    fn merge_preserves_world_coordinates_when_transforms_differ() {
        let merged = merge([
            transformed_feature("first", 100.0),
            transformed_feature("second", 200.0),
        ])
        .expect("features should merge");

        assert!(merged.transform().is_none());
        let world_xs = merged
            .vertices()
            .as_slice()
            .iter()
            .map(|vertex| vertex.x())
            .collect::<Vec<_>>();

        assert!(world_xs.iter().any(|x| (*x - 100.0).abs() < 1e-9));
        assert!(world_xs.iter().any(|x| (*x - 200.0).abs() < 1e-9));
    }
}