-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathOpenSite.ecschema.xml
More file actions
1181 lines (992 loc) · 79.8 KB
/
Copy pathOpenSite.ecschema.xml
File metadata and controls
1181 lines (992 loc) · 79.8 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!-- ==================================================================================
| * Copyright (c) Bentley Systems, Incorporated. All rights reserved.
| * See LICENSE.md in the project root for license terms and full copyright notice.
======================================================================================= -->
<ECSchema schemaName="OpenSite" alias="opnsite" version="01.00.07" xmlns="http://www.bentley.com/schemas/Bentley.ECXML.3.2" displayLabel="OpenSite" description="OpenSite+ application schema.">
<ECSchemaReference name="CoreCustomAttributes" version="01.00.03" alias="CoreCA" />
<ECSchemaReference name="BisCustomAttributes" version="01.00.00" alias="bisCA"/>
<ECSchemaReference name="BisCore" version="01.00.19" alias="bis" />
<ECSchemaReference name="LinearReferencing" version="02.00.03" alias="lr" />
<ECSchemaReference name="RoadRailUnits" version="01.00.02" alias="rru" />
<ECSchemaReference name="SpatialComposition" version="01.00.01" alias="spcomp" />
<ECSchemaReference name="StormSewerPhysical" version="01.00.00" alias="stmswrphys" />
<ECSchemaReference name="CivilPhysical" version="01.00.01" alias="cvphys" />
<ECCustomAttributes>
<ProductionStatus xmlns="CoreCustomAttributes.01.00.03">
<SupportedUse>NotForProduction</SupportedUse>
</ProductionStatus>
<SchemaLayerInfo xmlns="BisCustomAttributes.01.00.00">
<Value>Application</Value>
</SchemaLayerInfo>
</ECCustomAttributes>
<PropertyCategory typeName="DrivewayEndVertex_CulDeSac" displayLabel="Cul-de-sac" priority="0" />
<PropertyCategory typeName="DrivewayEndVertex_Flares" displayLabel="Flares" priority="0" />
<PropertyCategory typeName="DrivewayMidVertex_Transition" displayLabel="Transition" priority="0" />
<PropertyCategory typeName="ParkingSpaceVertex_Parking" displayLabel="Parking" priority="0" />
<PropertyCategory typeName="ParkingIslandVertex_Island" displayLabel="Island" priority="0" />
<PropertyCategory typeName="ParkingBayVertex_Bay" displayLabel="Bay" priority="0" />
<PropertyCategory typeName="ParkingAisleVertex_Aisle" displayLabel="Aisle" priority="0" />
<PropertyCategory typeName="ShapedEdge_LinkHeight" displayLabel="Grading Edge Height" priority="0" />
<PropertyCategory typeName="BuildingEdge_SlopeAway" displayLabel="Grading Slope Away" priority="0" />
<PropertyCategory typeName="PropertyEdge_Setbacks" displayLabel="Setbacks" priority="0" />
<PropertyCategory typeName="CenterlinePathEdge_Grading" displayLabel="Grading" priority="0" />
<PropertyCategory typeName="CenterlinePathEdge_Drainage" displayLabel="Drainage" priority="0" />
<PropertyCategory typeName="DrivewayPathEdge_Median" displayLabel="Median" priority="0" />
<PropertyCategory typeName="DrivewayPathEdge_Crowning" displayLabel="Crowning" priority="0" />
<PropertyCategory typeName="DrivewayPathFin_Road" displayLabel="Road" priority="0" />
<PropertyCategory typeName="DrivewayPathFin_Shoulder" displayLabel="Shoulder" priority="0" />
<PropertyCategory typeName="ShapedArea_Optimizer" displayLabel="Optimizer" priority="0" />
<PropertyCategory typeName="ShapedArea_Constraints" displayLabel="Constraints" priority="0" />
<PropertyCategory typeName="ShapedArea_Surface" displayLabel="Surface" priority="0" />
<PropertyCategory typeName="LayoutParkingArea_Parking" displayLabel="Parking" priority="0" />
<PropertyCategory typeName="LayoutParkingArea_ParkingAisle" displayLabel="Parking Aisle" priority="0" />
<PropertyCategory typeName="LayoutParkingArea_ParkingIsland" displayLabel="Parking Island" priority="0" />
<PropertyCategory typeName="LayoutParkingArea_ParkingBay" displayLabel="Parking Bay" priority="0" />
<PropertyCategory typeName="LayoutParkingArea_ParkingGrading" displayLabel="Parking Grading" priority="0" />
<PropertyCategory typeName="GradingArea_Optimizer" displayLabel="Optimizer" priority="0" />
<PropertyCategory typeName="GradingArea_Surface" displayLabel="Surface" priority="0" />
<PropertyCategory typeName="GradingArea_Constraints" displayLabel="Constraints" priority="0" />
<PropertyCategory typeName="LayoutPondArea_Pond" displayLabel="Pond" priority="0" />
<PropertyCategory typeName="DrivewayPath_Direction" displayLabel="Direction" priority="0" />
<PropertyCategory typeName="ParkingRowPath_Parking" displayLabel="Parking" priority="0" />
<PropertyCategory typeName="EdgeAisleAspect_Aisle" displayLabel="Aisle" priority="0" />
<PropertyCategory typeName="EdgeParkingAspect_Parking" displayLabel="Parking" priority="0" />
<PropertyCategory typeName="EdgeSidewalkAspect_Sidewalk" displayLabel="Sidewalk" priority="0" />
<PropertyCategory typeName="EdgeCurbAspect_Curb" displayLabel="Curb" priority="0" />
<PropertyCategory typeName="EdgeOnSideParkingAspect_Parking" displayLabel="OnSide Parking" priority="0" />
<PropertyCategory typeName="EdgeOnSideParkingAspect_Grading" displayLabel="OnSide Parking Grading" priority="0" />
<PropertyCategory typeName="SurfaceControl_Vertex" displayLabel="Surface Control" priority="0" />
<ECEnumeration typeName="IslandType" backingTypeName="int" isStrict="true" displayLabel="Island Type" description="Describes the parking island construction type.">
<ECEnumerator value="0" name="UNSET" displayLabel="Not Set" />
<ECEnumerator value="1" name="LANDSCAPED" displayLabel="Landscaped" />
<ECEnumerator value="2" name="RAISED_CONCRETE" displayLabel="Raised Concrete" />
<ECEnumerator value="3" name="RAISED_ASPHALT" displayLabel="Raised Asphalt" />
<ECEnumerator value="4" name="PAINTED_LINES" displayLabel="Painted Lines" />
</ECEnumeration>
<ECEnumeration typeName="ControlType" backingTypeName="int" isStrict="true" displayLabel="Control Type">
<ECEnumerator value="1" name="USER_CONTROL" displayLabel="User Controlled" />
<ECEnumerator value="2" name="COMPUTER_CONTROL" displayLabel="Computer Controlled" />
</ECEnumeration>
<ECEnumeration typeName="SurfaceType" backingTypeName="int" isStrict="true" displayLabel="Surface Type" description="Describes a design surface usage and/or material.">
<ECEnumerator value="-1" name="UNSET" displayLabel="Not Set" />
<ECEnumerator value="0" name="NONE" displayLabel="None" />
<ECEnumerator value="1" name="LIGHT_PAVING" displayLabel=" Light Paving" />
<ECEnumerator value="2" name="HEAVY_PAVING" displayLabel="Heavy Paving" />
<ECEnumerator value="3" name="LIGHT_CONCRETE" displayLabel="Light Concrete" />
<ECEnumerator value="4" name="HEAVY_CONCRETE" displayLabel="Heavy Concrete" />
<ECEnumerator value="5" name="PEDESTRIAN_CONCRETE" displayLabel="Pedestrian Concrete" />
<ECEnumerator value="6" name="LIGHT_PAVING_STREET" displayLabel="Light Paving Street" />
<ECEnumerator value="7" name="HEAVY_PAVING_STREET" displayLabel="Heavy Paving Street" />
<ECEnumerator value="8" name="LIGHT_CONCRETE_STREET" displayLabel="Light Concrete Street" />
<ECEnumerator value="9" name="HEAVY_CONCRETE_STREET" displayLabel="Heavy Concrete Street" />
<ECEnumerator value="10" name="PEDESTRIAN_ASPHALT" displayLabel="Pedestrian Asphalt" />
<ECEnumerator value="12" name="GRAVEL" displayLabel="Gravel" />
<ECEnumerator value="20" name="ALT1" displayLabel="Alternative One" />
<ECEnumerator value="21" name="ALT2" displayLabel="Alternative Two" />
<ECEnumerator value="22" name="ALT3" displayLabel="Alternative Three" />
</ECEnumeration>
<ECEnumeration typeName="CrownType" backingTypeName="int" isStrict="true" displayLabel="Crown Type" description="Describes how a road or driveway design is crowned.">
<ECEnumerator value="1" name="CROWN" displayLabel="Crown" />
<ECEnumerator value="2" name="SHED" displayLabel="Shed" />
<ECEnumerator value="3" name="INVERT_CROWN" displayLabel="Inverted Crown" />
<ECEnumerator value="4" name="FLEXIBLE" displayLabel="Flexible" />
</ECEnumeration>
<ECEntityClass typeName="Vertex" modifier="Abstract" displayLabel="Vertex">
<BaseClass>bis:SpatialLocationElement</BaseClass>
<ECProperty propertyName="Location" typeName="Point3d" />
</ECEntityClass>
<ECEntityClass typeName="AreaVertex" modifier="Sealed" displayLabel="Area Vertex">
<BaseClass>Vertex</BaseClass>
<ECProperty propertyName="Radius" typeName="double" kindOfQuantity="rru:LENGTH" />
</ECEntityClass>
<ECEntityClass typeName="PathVertex" modifier="Abstract" displayLabel="Path Vertex">
<BaseClass>Vertex</BaseClass>
<ECProperty propertyName="Radius" typeName="double" kindOfQuantity="rru:LENGTH" />
</ECEntityClass>
<ECEntityClass typeName="PathEndVertex" modifier="None" displayLabel="Path End Vertex" description="Path Vertex that is located at the start or end of a Path, in other words, it only has a single PathEdge attached to it">
<BaseClass>Vertex</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="PathMidVertex" modifier="None" displayLabel="Path Mid Vertex" description="Path Vertex that has two PathEdge instances attached to it, in other words.">
<BaseClass>Vertex</BaseClass>
<ECProperty propertyName="Radius" typeName="double" kindOfQuantity="rru:LENGTH" />
</ECEntityClass>
<ECEntityClass typeName="DrivewayEndVertex" modifier="Sealed" displayLabel="Driveway End Vertex" description="The first and last Vertex of a DrivewayPath.">
<BaseClass>PathEndVertex</BaseClass>
<ECProperty propertyName="CuldesacRadius" typeName="double" kindOfQuantity="rru:LENGTH" category="DrivewayEndVertex_CulDeSac" displayLabel="Radius" description="Radius of cul-de-sac." />
<ECProperty propertyName="CuldesacOffset" typeName="double" kindOfQuantity="rru:LENGTH" category="DrivewayEndVertex_CulDeSac" displayLabel="Offset" description="Offset of cul-de-sac, negative for left." />
<ECProperty propertyName="CuldesacROWRadius" typeName="double" kindOfQuantity="rru:LENGTH" category="DrivewayEndVertex_CulDeSac" displayLabel="ROW Radius" description="Cul-de-sac right of way entrance radius." />
<ECProperty propertyName="CuldesacROWReturnRadius" typeName="double" kindOfQuantity="rru:LENGTH" category="DrivewayEndVertex_CulDeSac" displayLabel="ROW Return Radius" description="Cul-de-sac right of way exit radius." />
<ECProperty propertyName="EntranceFlareRadius" typeName="double" kindOfQuantity="rru:LENGTH" category="DrivewayEndVertex_Flares" displayLabel="Entrance Radius" description="Sets the size of the flared entrance radius. Exit will be defined by the drive side of the road." />
<ECProperty propertyName="ExitFlareRadius" typeName="double" kindOfQuantity="rru:LENGTH" category="DrivewayEndVertex_Flares" displayLabel="Exit Radius" description="Sets the size of the flared exit radius. Entrance will be defined by the drive side of the road." />
</ECEntityClass>
<ECEntityClass typeName="DrivewayMidVertex" modifier="Sealed" displayLabel="Driveway Mid Vertex" description="Vertex of a DrivewayPath that is attached to two DrivewayPathEdge instances.">
<BaseClass>PathMidVertex</BaseClass>
<ECProperty propertyName="SideTransitionOffset" typeName="double" kindOfQuantity="rru:LENGTH" category="DrivewayMidVertex_Transition" displayLabel="Transition Offset" description="The transition offset distance." >
<ECCustomAttributes>
<HiddenProperty xmlns="CoreCustomAttributes.01.00.03" />
<Deprecated xmlns="CoreCustomAttributes.01.00.03">
<Description>Transition data to be stored in DrivewayTransitions instead. </Description>
</Deprecated>
</ECCustomAttributes>
</ECProperty>
<ECProperty propertyName="SideTransitionRadius1" typeName="double" kindOfQuantity="rru:LENGTH" category="DrivewayMidVertex_Transition" displayLabel="Transition Inner Radius" description="The inner radius of the transition." >
<ECCustomAttributes>
<HiddenProperty xmlns="CoreCustomAttributes.01.00.03" />
<Deprecated xmlns="CoreCustomAttributes.01.00.03">
<Description>Transition data to be stored in DrivewayTransitions instead. </Description>
</Deprecated>
</ECCustomAttributes>
</ECProperty>
<ECProperty propertyName="SideTransitionRadius2" typeName="double" kindOfQuantity="rru:LENGTH" category="DrivewayMidVertex_Transition" displayLabel="Transition Outer Radius" description="The outer radius of the transition." >
<ECCustomAttributes>
<HiddenProperty xmlns="CoreCustomAttributes.01.00.03" />
<Deprecated xmlns="CoreCustomAttributes.01.00.03">
<Description>Transition data to be stored in DrivewayTransitions instead. </Description>
</Deprecated>
</ECCustomAttributes>
</ECProperty>
</ECEntityClass>
<ECEntityClass typeName="ParkingVertex" modifier="Abstract" displayLabel="Parking Vertex">
<BaseClass>Vertex</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="ParkingSpaceVertex" modifier="Sealed" displayLabel="Parking Space Vertex" description="Defines a location point which overrides parking space settings.">
<BaseClass>ParkingVertex</BaseClass>
<ECProperty propertyName="ParkingNumber" typeName="int" category="ParkingSpaceVertex_Parking" displayLabel="Number of Spaces" description="Number of spaces to be overridden by a parking vertex." />
<ECProperty propertyName="ParkingWidth" typeName="double" category="ParkingSpaceVertex_Parking" kindOfQuantity="rru:LENGTH" displayLabel="Space Width" description="Width to be used for a parking vertex override." />
<ECProperty propertyName="ParkingSurfaceType" typeName="SurfaceType" category="ParkingSpaceVertex_Parking" displayLabel="Surface Type" description="Surface type defined by a parking vertex override." />
<ECProperty propertyName="ParkingMinSlope" typeName="double" category="ParkingSpaceVertex_Parking" kindOfQuantity="rru:SLOPE" displayLabel="Min. Slope" description="Minimum slope defined by a parking vertex override." />
<ECProperty propertyName="ParkingMaxSlope" typeName="double" category="ParkingSpaceVertex_Parking" kindOfQuantity="rru:SLOPE" displayLabel="Max. Slope" description="Maximum slope defined by a parking vertex override." />
</ECEntityClass>
<ECEntityClass typeName="ParkingBayVertex" modifier="Sealed" displayLabel="Parking Bay Vertex" description="Defines a location point to override an entire parking bay settings.">
<BaseClass>ParkingVertex</BaseClass>
<ECProperty propertyName="BayMedianWidth" typeName="double" category="ParkingBayVertex_Bay" kindOfQuantity="rru:LENGTH" displayLabel="Median Width" description="Median width defined by a bay override." />
<ECProperty propertyName="ParkingDepth" typeName="double" category="ParkingBayVertex_Bay" kindOfQuantity="rru:LENGTH" displayLabel="Parking Depth Primary" description="Defines the bay override parking depth for primary side." />
<ECProperty propertyName="ParkingDepthOther" typeName="double" category="ParkingBayVertex_Bay" kindOfQuantity="rru:LENGTH" displayLabel="Parking Depth Secondary" description="Defines the bay override parking depth for secondary side." />
<ECProperty propertyName="ParkingAngle" typeName="double" category="ParkingBayVertex_Bay" kindOfQuantity="rru:ANGLE" displayLabel="Parking Angle Primary" description="Defines the bay override parking angle for primary side." />
<ECProperty propertyName="ParkingAngleOther" typeName="double" category="ParkingBayVertex_Bay" kindOfQuantity="rru:ANGLE" displayLabel="Parking Angle Secondary" description="Defines the bay override parking angle for secondary side." />
</ECEntityClass>
<ECEntityClass typeName="ParkingAisleVertex" modifier="Sealed" displayLabel="Parking Aisle Vertex" description="Defines a location point to override a parking aisle settings.">
<BaseClass>ParkingVertex</BaseClass>
<ECProperty propertyName="AisleWidth" typeName="double" category="ParkingAisleVertex_Aisle" kindOfQuantity="rru:LENGTH" displayLabel="Aisle Width" description="Defines the aisle override width." />
</ECEntityClass>
<ECEntityClass typeName="ParkingIslandVertex" modifier="Sealed" displayLabel="Parking Island Vertex" description="Defines a location point to override a parking island settings.">
<BaseClass>ParkingVertex</BaseClass>
<ECProperty propertyName="IslandWidth" typeName="double" category="ParkingIslandVertex_Island" kindOfQuantity="rru:LENGTH" displayLabel="Island Width" description="Defines the island override for it's width." />
</ECEntityClass>
<ECEntityClass typeName="Edge" modifier="Abstract" displayLabel="Edge">
<BaseClass>bis:SpatialLocationElement</BaseClass>
<ECProperty propertyName="Order" typeName="int">
<ECCustomAttributes>
<HiddenProperty xmlns="CoreCustomAttributes.01.00.03" />
</ECCustomAttributes>
</ECProperty>
<ECNavigationProperty propertyName="StartVertex" relationshipName="EdgeStartsAtVertex" direction="Forward" />
<ECNavigationProperty propertyName="EndVertex" relationshipName="EdgeEndsAtVertex" direction="Forward" />
</ECEntityClass>
<ECEntityClass typeName="AreaEdge" modifier="Abstract" displayLabel="Area Edge">
<BaseClass>Edge</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="ShapedEdge" modifier="Abstract" displayLabel="Shaped Edge" description="Edge class for physical objects such as buildings.">
<BaseClass>AreaEdge</BaseClass>
<ECProperty propertyName="LinkHeight" typeName="double" kindOfQuantity="rru:LENGTH" category="ShapedEdge_LinkHeight" displayLabel="Link Height" description="Height of an edge." >
<ECCustomAttributes>
<HiddenProperty xmlns="CoreCustomAttributes.01.00.03" />
<Deprecated xmlns="CoreCustomAttributes.01.00.03">
<Description>Link Height has been moved to BuildingEdge and PadEdge and renamed to Fixed Height Difference.</Description>
</Deprecated>
</ECCustomAttributes>
</ECProperty>
<ECProperty propertyName="UseWallInCost" typeName="boolean" category="ShapedEdge_LinkHeight" displayLabel="Use Wall in Cost" description="Treat as a wall for cost optimization." />
</ECEntityClass>
<ECEntityClass typeName="PropertyEdge" modifier="Sealed" displayLabel="Grading Limit Edge">
<BaseClass>ShapedEdge</BaseClass>
<ECProperty propertyName="ParkingSetback" typeName="double" kindOfQuantity="rru:LENGTH" category="PropertyEdge_Setbacks" displayLabel="Parking Setback">
<ECCustomAttributes>
<HiddenProperty xmlns="CoreCustomAttributes.01.00.03" />
<Deprecated xmlns="CoreCustomAttributes.01.00.03">
<Description>PropertyArea and by extension PropertyEdge is no longer used for controlling parking setbacks. PropertyArea now serves the purpose of representing grading limits only.</Description>
</Deprecated>
</ECCustomAttributes>
</ECProperty>
<ECProperty propertyName="BuildingSetback" typeName="double" kindOfQuantity="rru:LENGTH" category="PropertyEdge_Setbacks" displayLabel="Building Setback">
<ECCustomAttributes>
<HiddenProperty xmlns="CoreCustomAttributes.01.00.03" />
<Deprecated xmlns="CoreCustomAttributes.01.00.03">
<Description>PropertyArea and by extension PropertyEdge is no longer used for controlling building setbacks. PropertyArea now serves the purpose of representing 'grading limits' only.</Description>
</Deprecated>
</ECCustomAttributes>
</ECProperty>
</ECEntityClass>
<ECEntityClass typeName="BuildingEdge" modifier="Sealed" displayLabel="Building Pad Edge">
<BaseClass>ShapedEdge</BaseClass>
<ECProperty propertyName="SlopeAway" typeName="double" kindOfQuantity="rru:SLOPE" category="BuildingEdge_SlopeAway" displayLabel="Slope Away" description="Slope away from edge for grading." />
<ECProperty propertyName="SlopeAwayDistance" typeName="double" kindOfQuantity="rru:LENGTH" category="BuildingEdge_SlopeAway" displayLabel="Slope Away Distance" description="Distance of the slope away from edge for grading." />
<ECProperty propertyName="FixedHeightDifference" typeName="double" kindOfQuantity="rru:LENGTH" category="ShapedEdge_LinkHeight" displayLabel="Fixed Height Difference" description="Height of an edge." />
</ECEntityClass>
<ECEntityClass typeName="ParkingEdge" modifier="Sealed" displayLabel="Parking Edge">
<BaseClass>ShapedEdge</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="IslandEdge" modifier="Sealed" displayLabel="Island Edge">
<BaseClass>ShapedEdge</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="SidewalkEdge" modifier="Sealed" displayLabel="Sidewalk Area Edge">
<BaseClass>ShapedEdge</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="DrivewayAreaEdge" modifier="Sealed" displayLabel="Driveway Area Edge">
<BaseClass>ShapedEdge</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="PondEdge" modifier="Sealed" displayLabel="Pond Edge">
<BaseClass>ShapedEdge</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="PadEdge" modifier="Sealed" displayLabel="Pad Edge">
<BaseClass>ShapedEdge</BaseClass>
<ECProperty propertyName="FixedHeightDifference" typeName="double" kindOfQuantity="rru:LENGTH" category="ShapedEdge_LinkHeight" displayLabel="Fixed Height Difference" description="Height of an edge." />
</ECEntityClass>
<ECEntityClass typeName="LayoutParkingEdge" modifier="Sealed" displayLabel="Layout Parking Edge" description="Parking lot">
<BaseClass>AreaEdge</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="PathEdge" modifier="None" displayLabel="Path Edge">
<BaseClass>Edge</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="CenterlinePathEdge" modifier="None" displayLabel="Centerline Path Edge" description="Centerline of a path.">
<BaseClass>PathEdge</BaseClass>
<ECProperty propertyName="MinDriveSlope" typeName="double" kindOfQuantity="rru:SLOPE" category="CenterlinePathEdge_Grading" displayLabel="Min. Slope" description="Minimum path slope for design." />
<ECProperty propertyName="MaxDriveSlope" typeName="double" kindOfQuantity="rru:SLOPE" category="CenterlinePathEdge_Grading" displayLabel="Max. Slope" description="Maximum path slope for design." />
<ECProperty propertyName="SurfaceType" typeName="SurfaceType" category="CenterlinePathEdge_Grading" displayLabel="Surface Type" description="Surface material type for path." />
<ECProperty propertyName="SurfaceDepth" typeName="double" kindOfQuantity="rru:LENGTH_SHORT" category="CenterlinePathEdge_Grading" displayLabel="Surface Depth" description="Surface material depth for path." />
<ECProperty propertyName="MinZ" typeName="double" kindOfQuantity="rru:LENGTH" category="CenterlinePathEdge_Grading" displayLabel="Min. Elevation" description="Minimum design elevation for path." />
<ECProperty propertyName="MaxZ" typeName="double" kindOfQuantity="rru:LENGTH" category="CenterlinePathEdge_Grading" displayLabel="Max. Elevation" description="Maximum design elevation for path." />
<ECProperty propertyName="RunoffC" typeName="double" category="CenterlinePathEdge_Drainage" displayLabel="Runoff Coefficient" description="Runoff coefficient for path." />
</ECEntityClass>
<ECEntityClass typeName="DrivewayPathEdge" modifier="Sealed" displayLabel="Driveway Edge" description="Centerline of a driveway.">
<BaseClass>CenterlinePathEdge</BaseClass>
<BaseClass>bis:IParentElement</BaseClass>
<ECProperty propertyName="MedianType" typeName="SurfaceType" category="DrivewayPathEdge_Median" displayLabel="Type" description="Median type along path." />
<ECProperty propertyName="MedianWidth" typeName="double" kindOfQuantity="rru:LENGTH" category="DrivewayPathEdge_Median" displayLabel="Width" description="Median width for path." />
<ECProperty propertyName="CrowningType" typeName="CrownType" category="DrivewayPathEdge_Crowning" displayLabel="Crown Type" description="Type of crown design for path." />
<ECProperty propertyName="KValueSag" typeName="double" category="DrivewayPathEdge_Crowning" displayLabel="Sag K Value" description="Design K-Value for sag vertical curves." />
<ECProperty propertyName="KValueSummit" typeName="double" category="DrivewayPathEdge_Crowning" displayLabel="Crest K Value" description="Design K-Value for crest vertical curves." />
</ECEntityClass>
<ECEntityClass typeName="DrivewayPathFin" modifier="Sealed" displayLabel="Driveway Fin" description="One of two sides to a Driveway Path Edge.">
<BaseClass>bis:SpatialLocationElement</BaseClass>
<!--
In SITEOPS, (almost) all the properties on this element are duplicated with the '-Other' post-fix and live on a single Side object.
Here, we have two separate elements, with this single property to determine if it is the 'Primary' DrivewayPathFin or the 'Other' DrivewayPathFin
-->
<ECProperty propertyName="IsPrimary" typeName="boolean">
<ECCustomAttributes>
<HiddenProperty xmlns="CoreCustomAttributes.01.00.03" />
</ECCustomAttributes>
</ECProperty>
<ECProperty propertyName="CrossSlope" typeName="double" kindOfQuantity="rru:SLOPE" category="DrivewayPathFin_Road" displayLabel="Cross Slope" description="Cross slope for this side of driveway." />
<ECProperty propertyName="DrivewayWidth" typeName="double" kindOfQuantity="rru:LENGTH" category="DrivewayPathFin_Road" displayLabel="Driveway Width" description="Driveway width on this side." />
<ECProperty propertyName="ShoulderWidth" typeName="double" kindOfQuantity="rru:LENGTH" category="DrivewayPathFin_Shoulder" displayLabel="Shoulder Width" description="Width of shoulder on this side of driveway." />
<ECProperty propertyName="ShoulderSlope" typeName="double" kindOfQuantity="rru:SLOPE" category="DrivewayPathFin_Shoulder" displayLabel="Shoulder Slope" description="Slope of shoulder on this side of driveway." />
<ECProperty propertyName="DitchOffset" typeName="double" kindOfQuantity="rru:LENGTH" category="DrivewayPathFin_Shoulder" displayLabel="Ditch Offset" description="Offset to ditch on this side of driveway." />
<ECProperty propertyName="DitchSlope" typeName="double" kindOfQuantity="rru:SLOPE" category="DrivewayPathFin_Shoulder" displayLabel="Ditch Slope" description="Ditch slope for this side of driveway." />
</ECEntityClass>
<ECEntityClass typeName="DrivewayTransition" modifier="Sealed" displayLabel="Transition">
<BaseClass>bis:SpatialLocationElement</BaseClass>
<ECProperty propertyName="IsPrimary" typeName="boolean">
<ECCustomAttributes>
<HiddenProperty xmlns="CoreCustomAttributes.01.00.03" />
</ECCustomAttributes>
</ECProperty>
<ECProperty propertyName="sideTransitionOffset" typeName="double" kindOfQuantity="rru:LENGTH" displayLabel="Transition Offset" description="Length of the offset."/>
<ECProperty propertyName="sideTransitionRadius1" typeName="double" kindOfQuantity="rru:LENGTH" displayLabel="Transition Inner Radius" description="Radius of the arc before the transition."/>
<ECProperty propertyName="sideTransitionRadius2" typeName="double" kindOfQuantity="rru:LENGTH" displayLabel="Transition Outer Radius" description="Radius of the arc after the transition."/>
</ECEntityClass>
<ECEntityClass typeName="SidewalkPathEdge" modifier="Sealed" displayLabel="Sidewalk Edge" description="Sidewalk path edge.">
<BaseClass>CenterlinePathEdge</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="ParkingDirectionPathEdge" modifier="Sealed" displayLabel="Parking Direction Edge" description="Parking direction path edge.">
<BaseClass>PathEdge</BaseClass>
</ECEntityClass>
<ECRelationshipClass typeName="EdgeStartsAtVertex" strength="referencing" modifier="Sealed">
<Source multiplicity="(0..2)" roleLabel="starts at" polymorphic="true">
<Class class="Edge" />
</Source>
<Target multiplicity="(1..1)" roleLabel="connects to" polymorphic="true">
<Class class="Vertex" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="EdgeEndsAtVertex" strength="referencing" modifier="Sealed">
<Source multiplicity="(0..2)" roleLabel="ends at" polymorphic="true">
<Class class="Edge" />
</Source>
<Target multiplicity="(1..1)" roleLabel="connects to" polymorphic="true">
<Class class="Vertex" />
</Target>
</ECRelationshipClass>
<ECEntityClass typeName="Wire" modifier="Abstract" displayLabel="Wire">
<BaseClass>bis:SpatialLocationElement</BaseClass>
<BaseClass>bis:IParentElement</BaseClass>
</ECEntityClass>
<ECRelationshipClass typeName="LayoutParkingAreaOwnsIslandAreas" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="LayoutParkingArea" />
</Source>
<Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="false">
<Class class="IslandArea" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="LayoutParkingAreaOwnsParkingRows" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="LayoutParkingArea" />
</Source>
<Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="false">
<Class class="ParkingRowPath" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="LayoutParkingAreaOwnsParkingArea" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="LayoutParkingArea" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="ParkingArea" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="BuildingAreaOwnsSidewalks" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="BuildingArea" />
</Source>
<Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="false">
<Class class="SidewalkArea" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="DrivewayPathOwnsDrivewayAreas" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="DrivewayPath" />
</Source>
<Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="false">
<Class class="DrivewayArea" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="DrivewayPathOwnsSidewalks" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="DrivewayPath" />
</Source>
<Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="false">
<Class class="SidewalkArea" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="DrivewayPathOwnsParkingAreas" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="DrivewayPath" />
</Source>
<Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="false">
<Class class="ParkingArea" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="DrivewayPathOwnsParkingRows" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="DrivewayPath" />
</Source>
<Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="false">
<Class class="ParkingRowPath" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="DrivewayPathOwnsBreaklines" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="DrivewayPath" />
</Source>
<Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="false">
<Class class="BreaklinePath" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="DrivewayPathEdgeOwnsFins" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="DrivewayPathEdge" />
</Source>
<Target multiplicity="(2..2)" roleLabel="is owned by" polymorphic="false">
<Class class="DrivewayPathFin" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="DrivewayMidVertexOwnsTransitions" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="DrivewayMidVertex" />
</Source>
<Target multiplicity="(2..2)" roleLabel="is owned by" polymorphic="false">
<Class class="DrivewayTransition" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="WireOwnsVertices" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
<Class class="Wire" />
</Source>
<Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="true">
<Class class="Vertex" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="WireOwnsEdges" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
<Class class="Wire" />
</Source>
<Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="true">
<Class class="Edge" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="LayoutParkingAreaOwnsParkingDirectionPath" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="LayoutParkingArea" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="ParkingDirectionPath" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="LayoutParkingAreaOwnsParkingVertex" strength="embedding" strengthDirection="Forward" modifier="Sealed">
<BaseClass>bis:ElementOwnsChildElements</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="LayoutParkingArea" />
</Source>
<Target multiplicity="(0..*)" roleLabel="is owned by" polymorphic="false">
<Class class="ParkingVertex" />
</Target>
</ECRelationshipClass>
<ECEntityClass typeName="Area" modifier="Abstract" displayLabel="Area" description="Area">
<BaseClass>Wire</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="ShapedArea" modifier="Abstract" displayLabel="Shaped Area" description="Shaped area">
<BaseClass>Area</BaseClass>
<BaseClass>ISurfaceControl</BaseClass>
<ECProperty propertyName="DoGrade" typeName="boolean" category="ShapedArea_Optimizer" displayLabel="Grading" description="Add area grading data to grading optimizer." />
<ECProperty propertyName="Topsoil" typeName="double" category="ShapedArea_Surface" kindOfQuantity="rru:LENGTH_SHORT" displayLabel="Topsoil" description="Depth of topsoil." />
<ECProperty propertyName="SurfaceType" typeName="SurfaceType" category="ShapedArea_Surface" displayLabel="Surface Type" description="Type definition of area." />
<ECProperty propertyName="SurfaceDepth" typeName="double" category="ShapedArea_Surface" kindOfQuantity="rru:LENGTH_SHORT" displayLabel="Surface Depth" description="Material depth of area." />
<ECProperty propertyName="RunoffCoefficient" typeName="double" category="ShapedArea_Surface" displayLabel="Runoff Coefficient" description="Runoff coefficient for area." />
<ECProperty propertyName="MinSlope" typeName="double" category="ShapedArea_Constraints" kindOfQuantity="rru:SLOPE" displayLabel="Min. Slope" description="Minimum design slope for area." />
<ECProperty propertyName="MaxSlope" typeName="double" category="ShapedArea_Constraints" kindOfQuantity="rru:SLOPE" displayLabel="Max. Slope" description="Maximum design slope for area." />
<ECProperty propertyName="MinZ" typeName="double" category="ShapedArea_Constraints" kindOfQuantity="rru:LENGTH" displayLabel="Min. Elevation" description="Minimum design elevation for area." />
<ECProperty propertyName="MaxZ" typeName="double" category="ShapedArea_Constraints" kindOfQuantity="rru:LENGTH" displayLabel="Max. Elevation" description="Maximum design elevation for area." />
</ECEntityClass>
<ECEntityClass typeName="PropertyArea" modifier="Sealed" displayLabel="Grading Limits" description="Grading Limits">
<BaseClass>ShapedArea</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="BuildingArea" modifier="Sealed" displayLabel="Building Pad" description="Building Pad">
<BaseClass>ShapedArea</BaseClass>
<ECProperty propertyName="ControlType" typeName="ControlType">
<ECCustomAttributes>
<HiddenProperty xmlns="CoreCustomAttributes.01.00.03" />
</ECCustomAttributes>
</ECProperty>
</ECEntityClass>
<ECEntityClass typeName="PadArea" modifier="Sealed" displayLabel="Pad Area" description="Pad Area">
<BaseClass>ShapedArea</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="ParkingArea" modifier="Sealed" displayLabel="Parking Area" description="Parking Area">
<BaseClass>ShapedArea</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="DrivewayArea" modifier="Sealed" displayLabel="Driveway Area" description="Driveway Area">
<BaseClass>ShapedArea</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="SidewalkArea" modifier="Sealed" displayLabel="Sidewalk Area" description="Sidewalk Area">
<BaseClass>ShapedArea</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="IslandArea" modifier="Sealed" displayLabel="Island Area" description="Island Area">
<BaseClass>ShapedArea</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="LayoutArea" modifier="Abstract" displayLabel="Layout Area" description="Layout Area">
<BaseClass>Area</BaseClass>
<BaseClass>ISurfaceControl</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="LayoutParkingArea" modifier="Sealed" displayLabel="Layout Parking Area" description="Layout parking area.">
<BaseClass>LayoutArea</BaseClass>
<ECProperty propertyName="ControlType" typeName="ControlType">
<ECCustomAttributes>
<HiddenProperty xmlns="CoreCustomAttributes.01.00.03" />
</ECCustomAttributes>
</ECProperty>
<ECProperty propertyName="ParkingWidth" typeName="double" category="LayoutParkingArea_Parking" kindOfQuantity="rru:LENGTH" displayLabel="Width" description="Parking space width." />
<ECProperty propertyName="ParkingDepth" typeName="double" category="LayoutParkingArea_Parking" kindOfQuantity="rru:LENGTH" displayLabel="Depth" description="Parking space depth." />
<ECProperty propertyName="ParkingAngle" typeName="double" category="LayoutParkingArea_Parking" kindOfQuantity="rru:ANGLE" displayLabel="Angle" description="Parking space angle." />
<ECProperty propertyName="ParkingSpaces" typeName="int" category="LayoutParkingArea_Parking" displayLabel="Parking Spaces" description="Number of spaces." />
<ECProperty propertyName="ProblemSpaces" typeName="int" category="LayoutParkingArea_Parking" displayLabel="Problem Spaces" description="Number of problematic spaces." />
<ECProperty propertyName="AisleWidth" typeName="double" kindOfQuantity="rru:LENGTH" category="LayoutParkingArea_ParkingAisle" displayLabel="Width" description="Parking aisle width." />
<ECProperty propertyName="ParkingPerIsland" typeName="int" category="LayoutParkingArea_ParkingIsland" displayLabel="Count Per Island" description="Number of parking spaces between islands." />
<ECProperty propertyName="MinIslandWidth" typeName="double" category="LayoutParkingArea_ParkingIsland" kindOfQuantity="rru:LENGTH" displayLabel="Minimum Width" description="Minimum parking island width." />
<ECProperty propertyName="IslandType" typeName="IslandType" category="LayoutParkingArea_ParkingIsland" displayLabel="Type" description="Island type or material." />
<ECProperty propertyName="IslandCurbRadius" typeName="double" category="LayoutParkingArea_ParkingIsland" kindOfQuantity="rru:LENGTH" displayLabel="Curb Radius" description="Island curb radius." />
<ECProperty propertyName="BayCurbRadius" typeName="double" category="LayoutParkingArea_ParkingBay" kindOfQuantity="rru:LENGTH" displayLabel="Curb Radius" description="Parking bay curb radius." />
<ECProperty propertyName="MinSlopeParkingLot" typeName="double" category="LayoutParkingArea_ParkingGrading" kindOfQuantity="rru:SLOPE" displayLabel="Min. Design Slope" description="Minimum design slope for parking lot." />
<ECProperty propertyName="MaxSlopeParkingLot" typeName="double" category="LayoutParkingArea_ParkingGrading" kindOfQuantity="rru:SLOPE" displayLabel="Max. Design Slope" description="Maximum design slope for parking lot." />
<ECProperty propertyName="SurfaceTypeParkingLot" typeName="SurfaceType" category="LayoutParkingArea_ParkingGrading" displayLabel="Surface Type" description="Surface type or material for parking lot." />
<ECProperty propertyName="SurfaceDepthParkingLot" typeName="double" category="LayoutParkingArea_ParkingGrading" kindOfQuantity="rru:LENGTH_SHORT" displayLabel="Surface Depth" description="Surface or material depth." />
<ECProperty propertyName="SurfaceTypeParkingSpaces" typeName="SurfaceType" category="LayoutParkingArea_ParkingGrading" displayLabel="Space Surface Type" description="Surface type or material for specific parking spaces." />
<ECProperty propertyName="SurfaceDepthParkingSpaces" typeName="double" category="LayoutParkingArea_ParkingGrading" kindOfQuantity="rru:LENGTH_SHORT" displayLabel="Space Surface Depth" description="Surface or material depth for specific parking spaces." />
</ECEntityClass>
<ECEntityClass typeName="LayoutPondArea" modifier="Sealed" displayLabel="Pond" description="Layout pond area.">
<BaseClass>LayoutArea</BaseClass>
<ECProperty propertyName="Height" typeName="double" category="LayoutPondArea_Pond" kindOfQuantity="rru:LENGTH" displayLabel="Riser Top Elevation" description="Riser Top Elevation." />
<ECProperty propertyName="TopHeight" typeName="double" category="LayoutPondArea_Pond" kindOfQuantity="rru:LENGTH" displayLabel="Dry Storage Height" description="Dry Storage Height." />
<ECProperty propertyName="WallSlope" typeName="double" category="LayoutPondArea_Pond" kindOfQuantity="rru:SLOPE" displayLabel="Side Slope" description=" Side Slope." />
<ECProperty propertyName="WallWidth" typeName="double" category="LayoutPondArea_Pond" kindOfQuantity="rru:LENGTH" displayLabel="Berm Width" description="Depth of the pond." />
<ECProperty propertyName="Depth" typeName="double" category="LayoutPondArea_Pond" kindOfQuantity="rru:LENGTH" displayLabel="Riser Height" description="Riser Height." />
<ECProperty propertyName="SizePond" typeName="boolean" category="LayoutPondArea_Pond" displayLabel="Size Pond" description="Size the pond using the target surface or volume." />
<ECProperty propertyName="TargetSurface" typeName="double" category="LayoutPondArea_Pond" kindOfQuantity="rru:AREA" displayLabel="Target Surface" description="Target surface." />
<ECProperty propertyName="TargetVolume" typeName="double" category="LayoutPondArea_Pond" kindOfQuantity="rru:VOLUME" displayLabel="Target Volume" description="Target volume." />
</ECEntityClass>
<ECEntityClass typeName="GradingArea" modifier="Abstract" displayLabel="Grading Area" description="Grading area.">
<BaseClass>Area</BaseClass>
<ECProperty propertyName="DoGrade" typeName="boolean" category="GradingArea_Optimizer" displayLabel="Grading" />
<ECProperty propertyName="Topsoil" typeName="double" category="GradingArea_Surface" kindOfQuantity="rru:LENGTH_SHORT" displayLabel="Topsoil" description="Topsoil depth for grading area." />
<ECProperty propertyName="SurfaceType" typeName="SurfaceType" category="GradingArea_Surface" displayLabel="Surface Type" description="Surface type or material for grading area." />
<ECProperty propertyName="SurfaceDepth" typeName="double" category="GradingArea_Surface" kindOfQuantity="rru:LENGTH_SHORT" displayLabel="Surface Depth" description="Surface or material depth for grading area." />
<ECProperty propertyName="MinSlope" typeName="double" category="GradingArea_Constraints" kindOfQuantity="rru:SLOPE" displayLabel="Min. Slope" description="Minimum slope constraint on grading area." />
<ECProperty propertyName="MaxSlope" typeName="double" category="GradingArea_Constraints" kindOfQuantity="rru:SLOPE" displayLabel="Max. Slope" description="Maximum slope constraint on grading area." />
<ECProperty propertyName="MinZ" typeName="double" category="GradingArea_Constraints" kindOfQuantity="rru:LENGTH" displayLabel="Min. Elevation" description="Minimum elevation change constraint on grading area." />
<ECProperty propertyName="MaxZ" typeName="double" category="GradingArea_Constraints" kindOfQuantity="rru:LENGTH" displayLabel="Max. Elevation" description="Maximum elevation change constraint on grading area." />
</ECEntityClass>
<ECEntityClass typeName="GradingLimitArea" modifier="Sealed" displayLabel="Grading Constraints" description="Grading constraints area.">
<BaseClass>GradingArea</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="Path" modifier="Abstract" displayLabel="Path">
<BaseClass>Wire</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="LayoutPath" modifier="Abstract" displayLabel="Layout Path" description="Layout path.">
<BaseClass>Path</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="DrivewayPath" modifier="Sealed" displayLabel="Driveway" description="Driveway path.">
<BaseClass>LayoutPath</BaseClass>
<BaseClass>lr:ILinearElementSource</BaseClass>
<BaseClass>bis:IParentElement</BaseClass>
<ECProperty propertyName="ControlType" typeName="ControlType">
<ECCustomAttributes>
<HiddenProperty xmlns="CoreCustomAttributes.01.00.03" />
</ECCustomAttributes>
</ECProperty>
<ECProperty propertyName="DriveOnRight" typeName="boolean" category="DrivewayPath_Direction" displayLabel="Drive On Right" description="Sets the primary drive side, true to drive on the right-hand side." />
</ECEntityClass>
<ECEntityClass typeName="ParkingDirectionPath" modifier="Sealed" displayLabel="Parking Direction" description="Parking direction path.">
<BaseClass>LayoutPath</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="SidewalkPath" modifier="Sealed" displayLabel="Sidewalk" description="Sidewalk path.">
<BaseClass>LayoutPath</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="ParkingRowPath" modifier="Sealed" displayLabel="Parking Row" description="Parking row path.">
<BaseClass>LayoutPath</BaseClass>
<ECProperty propertyName="ParkingWidth" typeName="double" kindOfQuantity="rru:LENGTH" category="ParkingRowPath_Parking" displayLabel="Width" description="Parking width for row." />
<ECProperty propertyName="ParkingDepth" typeName="double" kindOfQuantity="rru:LENGTH" category="ParkingRowPath_Parking" displayLabel="Depth" description="Parking depth for row." />
<ECProperty propertyName="ParkingAngle" typeName="double" kindOfQuantity="rru:ANGLE" category="ParkingRowPath_Parking" displayLabel="Angle" description="Parking angle for row." />
</ECEntityClass>
<ECEntityClass typeName="GradingPath" modifier="Abstract" displayLabel="Grading Path" description="Grading path.">
<BaseClass>Path</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="BreaklinePath" modifier="Sealed" displayLabel="Breakline Path" description="Breakline path.">
<BaseClass>GradingPath</BaseClass>
</ECEntityClass>
<ECEntityClass typeName="CachedLinear" modifier="Sealed" displayLabel="Cached Linear" description="Cached 3D Linear geometry.">
<BaseClass>bis:SpatialLocationElement</BaseClass>
<ECCustomAttributes>
<HiddenClass xmlns="CoreCustomAttributes.01.00.03" />
</ECCustomAttributes>
<ECProperty propertyName="Geometry" typeName="Bentley.Geometry.Common.IGeometry" displayLabel="Linear Geometry" />
</ECEntityClass>
<ECEntityClass typeName="CachedTopSurface" modifier="Sealed" displayLabel="Cached Top Surface" description="Cached Top Surface geometry.">
<BaseClass>bis:SpatialLocationElement</BaseClass>
<ECCustomAttributes>
<HiddenClass xmlns="CoreCustomAttributes.01.00.03" />
</ECCustomAttributes>
<ECProperty propertyName="Surface" typeName="Bentley.Geometry.Common.IGeometry" displayLabel="Top Surface Geometry" />
</ECEntityClass>
<ECEntityClass typeName="ContourLinesAspect" modifier="Sealed" displayLabel="Contour Lines" description="Terrain contour lines" >
<BaseClass>bis:ElementUniqueAspect</BaseClass>
<ECProperty propertyName="MinorStep" typeName="double" kindOfQuantity="rru:LENGTH" displayLabel="Minor Step" description="Minor steps interval size" />
<ECProperty propertyName="MajorStepMultiple" typeName="int" displayLabel="Major Step Interval" description="Number of minor intervals between two major steps" />
</ECEntityClass>
<ECEntityClass typeName="CurbType" displayLabel="Curb Type" description="Defines a shared set of properties whose values vary per-type of Curb rather than per-instance.">
<BaseClass>cvphys:CurbType</BaseClass>
<ECProperty propertyName="PanWidth" typeName="double" kindOfQuantity="rru:LENGTH" displayLabel="Pan Width" description="Width of curb pan." />
<ECProperty propertyName="PanThickness" typeName="double" kindOfQuantity="rru:LENGTH" displayLabel="Pan Thickness" description="Thickness of curb pan." />
<ECProperty propertyName="StoneExtension" typeName="double" kindOfQuantity="rru:LENGTH" displayLabel="Stone Extension" description="Width of stone extension." />
<ECProperty propertyName="StoneThickness" typeName="double" kindOfQuantity="rru:LENGTH" displayLabel="Stone Thickness" description="Thickness of stone extension." />
<ECProperty propertyName="CurbHeight" typeName="double" kindOfQuantity="rru:LENGTH" displayLabel="Curb Height" description="Height of curb." />
<ECProperty propertyName="CurbTopWidth" typeName="double" kindOfQuantity="rru:LENGTH" displayLabel="Curb Top Width" description="Width of curb top." />
<ECProperty propertyName="CurbBottomWidth" typeName="double" kindOfQuantity="rru:LENGTH" displayLabel="Curb Bottom Width" description="Width of curb bottom." />
<ECProperty propertyName="MiterWidth" typeName="double" kindOfQuantity="rru:LENGTH" displayLabel="Miter Width" description="Width of curb miter." />
<ECProperty propertyName="MiterHeight" typeName="double" kindOfQuantity="rru:LENGTH" displayLabel="Miter Height" description="Height of curb miter." />
</ECEntityClass>
<ECRelationshipClass typeName="WireOwnsContourLinesAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="true">
<Class class="Wire" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="ContourLinesAspect" />
</Target>
</ECRelationshipClass>
<ECEntityClass typeName="EdgeParkingAspect" modifier="Sealed" displayLabel="Parking">
<BaseClass>bis:ElementUniqueAspect</BaseClass>
<ECProperty propertyName="ParkingWidth" typeName="double" kindOfQuantity="rru:LENGTH" category="EdgeParkingAspect_Parking" displayLabel="Parking Width" description="Parking space width." />
<ECProperty propertyName="ParkingDepth" typeName="double" kindOfQuantity="rru:LENGTH" category="EdgeParkingAspect_Parking" displayLabel="Parking Depth" description="Parking space depth." />
<ECProperty propertyName="ParkingAngle" typeName="double" kindOfQuantity="rru:ANGLE" category="EdgeParkingAspect_Parking" displayLabel="Parking Angle" description="Parking space angle." />
<ECProperty propertyName="MaxParkingOffset" typeName="double" kindOfQuantity="rru:LENGTH" category="EdgeParkingAspect_Parking" displayLabel="Max. Parking Offset" />
<ECProperty propertyName="IgnoreProblems" typeName="boolean" category="EdgeParkingAspect_Parking" displayLabel="Ignore Problems" />
<ECProperty propertyName="ParksPerIsland" typeName="int" category="EdgeParkingAspect_Parking" displayLabel="Count Per Island" description="Parking space count between islands." />
<ECProperty propertyName="IslandWidth" typeName="double" kindOfQuantity="rru:LENGTH" category="EdgeParkingAspect_Parking" displayLabel="Island Width" description="Width of parking islands." />
<ECProperty propertyName="IslandCurbRadius" typeName="double" kindOfQuantity="rru:LENGTH" category="EdgeParkingAspect_Parking" displayLabel="Island Curb Radius" description="Curb radius for parking islands." />
</ECEntityClass>
<ECRelationshipClass typeName="PropertyEdgeOwnsParkingAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="PropertyEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeParkingAspect" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="BuildingEdgeOwnsParkingAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="BuildingEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeParkingAspect" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="IslandEdgeOwnsParkingAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="IslandEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeParkingAspect" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="PadEdgeOwnsParkingAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="PadEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeParkingAspect" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="LayoutParkingEdgeOwnsParkingAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="LayoutParkingEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeParkingAspect" />
</Target>
</ECRelationshipClass>
<ECEntityClass typeName="EdgeOnSideParkingAspect" modifier="Sealed" displayLabel="Onside Parking">
<BaseClass>bis:ElementUniqueAspect</BaseClass>
<ECProperty propertyName="OnSideParkingWidth" typeName="double" kindOfQuantity="rru:LENGTH" category="EdgeOnSideParkingAspect_Parking" displayLabel="Onside Parking Width" description="Onside parking space width for this side of driveway." />
<ECProperty propertyName="OnSideParkingDepth" typeName="double" kindOfQuantity="rru:LENGTH" category="EdgeOnSideParkingAspect_Parking" displayLabel="Onside Parking Depth" description="Onside parking space depth for this side of driveway." />
<ECProperty propertyName="OnSideParkingAngle" typeName="double" kindOfQuantity="rru:ANGLE" category="EdgeOnSideParkingAspect_Parking" displayLabel="Onside Parking Angle" description="Onside parking space angle for this side of driveway." />
<ECProperty propertyName="OnSideParksPerIsland" typeName="int" category="EdgeOnSideParkingAspect_Parking" displayLabel="Onside Parks Per Island" description="Onside parking space count per island on this side of driveway." />
<ECProperty propertyName="OnSideIslandWidth" typeName="double" kindOfQuantity="rru:LENGTH" category="EdgeOnSideParkingAspect_Parking" displayLabel="Onside Island Width" description="Onside parking island width for this side of driveway." />
<ECProperty propertyName="OnSideIslandCurbRadius" typeName="double" kindOfQuantity="rru:LENGTH" category="EdgeOnSideParkingAspect_Parking" displayLabel="Onside Curb Radius" description="Onside parking island curb radius for this side of driveway." />
<ECProperty propertyName="OnSideParkingSurfaceType" typeName="SurfaceType" category="EdgeOnSideParkingAspect_Grading" displayLabel="Onside Surface Type" description="Onside parking surface type for this side of driveway." />
<ECProperty propertyName="OnSideParkingSurfaceDepth" typeName="double" kindOfQuantity="rru:LENGTH_SHORT" category="EdgeOnSideParkingAspect_Grading" displayLabel="Onside Surface Depth" description="Onside parking material depth for this side of driveway." />
<ECProperty propertyName="OnSideParkingMinSlope" typeName="double" kindOfQuantity="rru:SLOPE" category="EdgeOnSideParkingAspect_Grading" displayLabel="Onside Parking Min. Slope" description="Onside parking minimum design slope for this side of driveway." />
<ECProperty propertyName="OnSideParkingMaxSlope" typeName="double" kindOfQuantity="rru:SLOPE" category="EdgeOnSideParkingAspect_Grading" displayLabel="Onside Parking Max. Slope" description="Onside parking maximum design slope for this side of driveway." />
</ECEntityClass>
<ECRelationshipClass typeName="DrivewayPathFinOwnsOnSideParkingAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="DrivewayPathFin" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeOnSideParkingAspect" />
</Target>
</ECRelationshipClass>
<ECEntityClass typeName="EdgeSidewalkAspect" modifier="Sealed" displayLabel="Sidewalk Aspect">
<BaseClass>bis:ElementUniqueAspect</BaseClass>
<ECProperty propertyName="SidewalkType" typeName="SurfaceType" category="EdgeSidewalkAspect_Sidewalk" displayLabel="Type" description="Defines the type of sidewalk or material." />
<ECProperty propertyName="SidewalkWidth" typeName="double" kindOfQuantity="rru:LENGTH" category="EdgeSidewalkAspect_Sidewalk" displayLabel="Width" description="Width of sidewalk." />
<ECProperty propertyName="SidewalkOffset" typeName="double" kindOfQuantity="rru:LENGTH" category="EdgeSidewalkAspect_Sidewalk" displayLabel="Offset" description="Offset distance for sidewalk." />
<ECProperty propertyName="SidewalkDepth" typeName="double" kindOfQuantity="rru:LENGTH" category="EdgeSidewalkAspect_Sidewalk" displayLabel="Depth" description="Depth of sidewalk material." />
<ECProperty propertyName="MinSidewalkSlope" typeName="double" kindOfQuantity="rru:SLOPE" category="EdgeSidewalkAspect_Sidewalk" displayLabel="Min. Slope" description="Minimum allowable sidewalk slope." />
<ECProperty propertyName="MaxSidewalkSlope" typeName="double" kindOfQuantity="rru:SLOPE" category="EdgeSidewalkAspect_Sidewalk" displayLabel="Max. Slope" description="Maximum allowable sidewalk slope." />
</ECEntityClass>
<ECRelationshipClass typeName="BuildingEdgeOwnsSidewalkAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="BuildingEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeSidewalkAspect" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="LayoutParkingEdgeOwnsSidewalkAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="LayoutParkingEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeSidewalkAspect" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="DrivewayPathFinOwnsSidewalkAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="DrivewayPathFin" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeSidewalkAspect" />
</Target>
</ECRelationshipClass>
<ECEntityClass typeName="EdgeCurbAspect" modifier="Sealed" displayLabel="Curb">
<BaseClass>bis:ElementUniqueAspect</BaseClass>
<ECProperty propertyName="CurbHeight" typeName="double" kindOfQuantity="rru:LENGTH" category="EdgeCurbAspect_Curb" displayLabel="Curb Height" description="Height of the curb." />
</ECEntityClass>
<ECRelationshipClass typeName="BuildingEdgeOwnsCurbAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="BuildingEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeCurbAspect" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="ParkingEdgeOwnsCurbAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="ParkingEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeCurbAspect" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="IslandEdgeOwnsCurbAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="IslandEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeCurbAspect" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="SidewalkEdgeOwnsCurbAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="SidewalkEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeCurbAspect" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="DrivewayAreaEdgeOwnsCurbAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="DrivewayAreaEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeCurbAspect" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="PadEdgeOwnsCurbAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="PadEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeCurbAspect" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="LayoutParkingEdgeOwnsCurbAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="LayoutParkingEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeCurbAspect" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="DrivewayPathFinOwnsCurbAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="DrivewayPathFin" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeCurbAspect" />
</Target>
</ECRelationshipClass>
<ECEntityClass typeName="EdgeAisleAspect" modifier="Sealed" displayLabel="Aisle">
<BaseClass>bis:ElementUniqueAspect</BaseClass>
<ECProperty propertyName="AisleWidth" typeName="double" kindOfQuantity="rru:LENGTH" category="EdgeAisleAspect_Aisle" displayLabel="Aisle Width" description="Aisle width for parking." />
</ECEntityClass>
<ECRelationshipClass typeName="PropertyEdgeOwnsAisleAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>
<Source multiplicity="(1..1)" roleLabel="owns" polymorphic="false">
<Class class="PropertyEdge" />
</Source>
<Target multiplicity="(0..1)" roleLabel="is owned by" polymorphic="false">
<Class class="EdgeAisleAspect" />
</Target>
</ECRelationshipClass>
<ECRelationshipClass typeName="BuildingEdgeOwnsAisleAspect" modifier="Sealed" strength="embedding">
<BaseClass>bis:ElementOwnsUniqueAspect</BaseClass>