Geotools.Net

ICoordinateSystemFactory.CreateLocalCoordinateSystem Method 

Creates a local coordinate system.

[Visual Basic]
Function CreateLocalCoordinateSystem( _
   ByVal name As String, _
   ByVal datum As ILocalDatum, _
   ByVal unit As IUnit, _
   ByVal arAxes As IAxisInfo() _
) As ILocalCoordinateSystem
[C#]
ILocalCoordinateSystem CreateLocalCoordinateSystem(
   string name,
   ILocalDatum datum,
   IUnit unit,
   IAxisInfo[] arAxes
);

Parameters

name
Name to give new object.
datum
Local datum to use in created CS.
unit
Units to use for all axes in created CS.
arAxes
Axes to use in created CS.

Return Value

Missing <returns> documentation for M:Geotools.CoordinateReferenceSystems.ICoordinateSystemFactory.CreateLocalCoordinateSystem(System.String,Geotools.CoordinateReferenceSystems.ILocalDatum,Geotools.CoordinateReferenceSystems.IUnit,Geotools.CoordinateReferenceSystems.IAxisInfo[])

Remarks

The dimension of the local coordinate system is determined by the size of the axis array. All the axes will have the same units. If you want to make a coordinate system with mixed units, then you can make a compound coordinate system from different local coordinate systems.

See Also

ICoordinateSystemFactory Interface | ICoordinateSystemFactory Members | Geotools.CoordinateReferenceSystems Namespace