Click or drag to resize

Reprojector Methods

The Reprojector type exposes the following members.

Methods
  NameDescription
Public methodBypassDatumConversions
Explicitly bypass datum conversions, setting the DoDatumConversions to false.
Public methodConvert(Double, Double)
Converts a point (x, y) from the source map projection to the target map projection.
Public methodConvert(Double, Double, Double)
Converts a point (x, y, h) from the source map projection to the target map projection.
Public methodDatumShift
Converts a point in Euclidean coordinates (x, y, z) relative to the source datum center to Euclidean coordinates relative to the target datum center.

This is done in a two step process. First the coordinates are converted from the source datum center to an arbitrary geocentric Euclidean space, and from there it's converted to the target datum center.

Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Public methodInvConvert(Double, Double)
Inverse conversion, converts a point (x, y) from the target map projection to the source map projection.
Public methodInvConvert(Double, Double, Double)
Inverse conversion, converts a point (x, y, h) from the target map projection to the source map projection.
Public methodInvDatumShift
Inverse conversion, converts a point in Euclidean coordinates (x, y, z) relative to the target datum center to Euclidean coordinates relative to the source datum center.

This is done in a two step process. First the coordinates are converted from the target datum center to an arbitrary geocentric Euclidean space, and from there it's converted to the source datum center.

Public methodInvertOrder
Invert the order of the conversion, by swapping the source and the target map projection, including any datum shift parameters.

Also the TypeOfConversion will be inverted, i.e. a type of Proj2Geo will be changed to Geo2Proj and vice versa.

Public methodResetDoDatumConversions
Reset the DoDatumConversions flag to its default value.
Public methodSetDatumShiftParameters(ReprojectorSide, Double, Double, Double)
Sets the 3-parameter datum shift parameters of either the source or the target map projection.

This call will reset the BypassDatumConversions flag

Public methodSetDatumShiftParameters(ReprojectorSide, Double, Double, Double, Double, Double, Double, Double)
Sets the 7-parameter datum shift parameters of either the source or the target map projection.
Public methodSetNoDatumShift
Disable datum shift calculations for either the source or the target.

This call will reset the BypassDatumConversions flag

Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
See Also