Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Bir güzergahta birden fazla T="crosssection" objesi tanımlanabilir. Yolun durumuna göre belli bir kilometreden sonra eğim değişikliği yapmak için başka enine kesitler tanımlanır. Station o kesitin başlama noktası, LeftEdgeToHCL o kesitin yarı genişliğini verir. T="crossSectionSegment" objesi altında Slope, enine kesitin eğimini, Width ise o kesitin genişliğini ifade eder. Yani yolun tüm genişliğini CrossSectionSegment altında parçalara ayırabilir farklı eğimler tanımlayabiliriz.

Örnek:

Code Block
languagexml
themeEclipse
<O N="Enine kesit" T="CrossSection">
    <P N="Station" V="300" />
    <P N="LeftEdgeToHCL" V="100" />
    <P N="ElevationAtHCL" V="0" />
    <O N="Sol" T="CrossSectionSegment">
        <P N="Slope" V="0.1" />
        <P N="Width" V="100" />
    </O>
    <O N="Sag" T="CrossSectionSegment">
        <P N="Slope" V="-0.1" />
        <P N="Width" V="50" />
    </O>
    <O N="Sag1" T="CrossSectionSegment">
        <P N="Slope" V="-0.1" />
        <P N="Width" V="50" />
    </O>
</O>

...