Geotools.Net

ICoordinateSystemFactory.CreateCompoundCoordinateSystem Method 

Creates a fitted coordinate system.

[Visual Basic]
Function CreateCompoundCoordinateSystem( _
   ByVal name As String, _
   ByVal head As ICoordinateSystem, _
   ByVal tail As ICoordinateSystem _
) As ICompoundCoordinateSystem
[C#]
ICompoundCoordinateSystem CreateCompoundCoordinateSystem(
   string name,
   ICoordinateSystem head,
   ICoordinateSystem tail
);

Parameters

name
Name to give new object.
head
Head Coordinate system to use for earlier ordinates.
tail
Tail Coordinate system to use for later ordinates.

Return Value

Missing <returns> documentation for M:Geotools.CoordinateReferenceSystems.ICoordinateSystemFactory.CreateCompoundCoordinateSystem(System.String,Geotools.CoordinateReferenceSystems.ICoordinateSystem,Geotools.CoordinateReferenceSystems.ICoordinateSystem)

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