Geotools.Net

CoordinateSystemFactory.CreateGeographicCoordinateSystem Method 

Creates a GCS, which could be Lat/Lon or Lon/Lat.

[Visual Basic]
NotOverridable Public Function CreateGeographicCoordinateSystem( _
   ByVal name As String, _
   ByVal angularUnit As IAngularUnit, _
   ByVal horizontalDatum As IHorizontalDatum, _
   ByVal primeMeridian As IPrimeMeridian, _
   ByVal axis0 As IAxisInfo, _
   ByVal axis1 As IAxisInfo _
) As IGeographicCoordinateSystem Implements _
   ICoordinateSystemFactory.CreateGeographicCoordinateSystem
[C#]
public IGeographicCoordinateSystem CreateGeographicCoordinateSystem(
   string name,
   IAngularUnit angularUnit,
   IHorizontalDatum horizontalDatum,
   IPrimeMeridian primeMeridian,
   IAxisInfo axis0,
   IAxisInfo axis1
);

Parameters

name
The name of the coordinae system.
angularUnit
The angular units to use.
horizontalDatum
Ghe horizontal datum to use.
primeMeridian
The prime meridian to use.
axis0
Information about the x axis.
axis1
Information about the y axis.

Return Value

an object that implements the IGeographicCoordinateSystem interface.

Implements

ICoordinateSystemFactory.CreateGeographicCoordinateSystem

Remarks

Missing <remarks> documentation for M:Geotools.CoordinateReferenceSystems.CoordinateSystemFactory.CreateGeographicCoordinateSystem(System.String,Geotools.CoordinateReferenceSystems.IAngularUnit,Geotools.CoordinateReferenceSystems.IHorizontalDatum,Geotools.CoordinateReferenceSystems.IPrimeMeridian,Geotools.CoordinateReferenceSystems.IAxisInfo,Geotools.CoordinateReferenceSystems.IAxisInfo)

See Also

CoordinateSystemFactory Class | CoordinateSystemFactory Members | Geotools.CoordinateReferenceSystems Namespace