Geotools.Net

ICoordinateSystemFactory.CreateFittedCoordinateSystem Method 

Creates a fitted coordinate system.

[Visual Basic]
Function CreateFittedCoordinateSystem( _
   ByVal name As String, _
   ByVal baseCoordinateSystem As ICoordinateSystem, _
   ByVal toBaseWKT As String, _
   ByVal arAxes As IAxisInfo() _
) As IFittedCoordinateSystem
[C#]
IFittedCoordinateSystem CreateFittedCoordinateSystem(
   string name,
   ICoordinateSystem baseCoordinateSystem,
   string toBaseWKT,
   IAxisInfo[] arAxes
);

Parameters

name
Name to give new object.
baseCoordinateSystem
Coordinate system to base the fitted CS on.
toBaseWKT
Well-Known Text of transform from returned CS to base CS.
arAxes
Axes for fitted coordinate system. The number of axes must match the source dimension of the transform "toBaseWKT".

Return Value

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

Remarks

The units of the axes in the fitted coordinate system will be inferred from the units of the base coordinate system. If the affine map performs a rotation, then any mixed axes must have identical units. For example, a (lat_deg,lon_deg,height_feet) system can be rotated in the (lat,lon) plane, since both affected axes are in degrees. But you should not rotate this coordinate system in any other plane.

See Also

ICoordinateSystemFactory Interface | ICoordinateSystemFactory Members | Geotools.CoordinateReferenceSystems Namespace