Create a new MGRS reference object from the given UTM reference. It is assumed that this MGRS reference represents a point using the GRS 1980, International or WGS84 ellipsoids. It is assumed that the UTMRef object is valid.

Namespace:  DotNetCoords
Assembly:  DotNetCoords (in DotNetCoords.dll) Version: 1.0.0.1 (1.0.0.1)

Syntax

C#
public MGRSRef(
	UTMRef utm,
	bool isBessel
)
Visual Basic (Declaration)
Public Sub New ( _
	utm As UTMRef, _
	isBessel As Boolean _
)
Visual C++
public:
MGRSRef(
	UTMRef^ utm, 
	bool isBessel
)

Parameters

utm
Type: DotNetCoords..::.UTMRef
A UTM reference.
isBessel
Type: System..::.Boolean
true if the parameters represent an MGRS reference using the Bessel 1841 ellipsoid; false is the parameters represent an MGRS reference using the GRS 1980, International or WGS84 ellipsoids.

See Also