Returns a world coordinate (in the format X/Y/Z) from a SOE baseline coordinate (Station/Offset/Elevation).
Namespace: Autodesk.Civil.DatabaseServicesAssembly: AeccDbMgd (in AeccDbMgd.dll) Version: 13.4.208.0
Syntax
C#
public virtual Point3d StationOffsetElevationToXYZ( Point3d soe )
Visual Basic
Public Overridable Function StationOffsetElevationToXYZ ( _ soe As Point3d _ ) As Point3d
Visual C++
public: virtual Point3d StationOffsetElevationToXYZ( Point3d soe )
Parameters
- soe
- Type: Point3d
Point3d object in the format Station/Offset/Elevation
Return Value
The method returns a world coordinate (X/Y/Z) at the same location as the specified SOE (Station/Offset/Elevation) coordinate. If the point cannot be converted, it returns the origin point (Point3d(0, 0, 0)).Remarks
This method returns the world coordinate (X/Y/Z) from a specified SOE coordinate on a baseline (Station/Offset/Elevation).
If the specified coordinate cannot be converted because of an invalid value in the Station, Offset, or Elevation parameters, the method returns a Point3d at the origin (Point3d(0, 0, 0)).