Geotools.Net

CoordinateSystemFactory.CreateHorizontalDatum Method 

Creates horizontal datum from ellipsoid and Bursa-World parameters. Since this method contains a set of Bursa-Wolf parameters, the created datum will always have a relationship to WGS84. If you wish to create a horizontal datum that has no relationship with WGS84, then you can either specify a horizontalDatumType of IHD_Other, or create it via WKT.

[Visual Basic]
NotOverridable Public Function CreateHorizontalDatum( _
   ByVal name As String, _
   ByVal horizontalDatumType As DatumType, _
   ByVal ellipsoid As IEllipsoid, _
   ByVal toWGS84 As WGS84ConversionInfo _
) As IHorizontalDatum Implements _
   ICoordinateSystemFactory.CreateHorizontalDatum
[C#]
public IHorizontalDatum CreateHorizontalDatum(
   string name,
   DatumType horizontalDatumType,
   IEllipsoid ellipsoid,
   WGS84ConversionInfo toWGS84
);

Parameters

name
The name of the datum to create.
horizontalDatumType
The IDatumType type use when creating the datum.
ellipsoid
The ellipsoid to use then creating the datum.
toWGS84
WKGS conversion parameters.

Return Value

An object that implements the IHorizontalDatum interface.

Implements

ICoordinateSystemFactory.CreateHorizontalDatum

Remarks

Missing <remarks> documentation for M:Geotools.CoordinateReferenceSystems.CoordinateSystemFactory.CreateHorizontalDatum(System.String,Geotools.CoordinateReferenceSystems.DatumType,Geotools.CoordinateReferenceSystems.IEllipsoid,Geotools.CoordinateReferenceSystems.WGS84ConversionInfo)

See Also

CoordinateSystemFactory Class | CoordinateSystemFactory Members | Geotools.CoordinateReferenceSystems Namespace