MapProjectionProj2Geo Method  | 
 
            Convert coordinates from projection coordinates to geographical coordinates 
            
 
    Namespace: 
   DHI.Projections
    Assembly:
   DHI.Projections (in DHI.Projections.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntaxpublic void Proj2Geo(
	double east,
	double north,
	out double lon,
	out double lat
)
Public Sub Proj2Geo ( 
	east As Double,
	north As Double,
	<OutAttribute> ByRef lon As Double,
	<OutAttribute> ByRef lat As Double
)
public:
void Proj2Geo(
	double east, 
	double north, 
	[OutAttribute] double% lon, 
	[OutAttribute] double% lat
)
member Proj2Geo : 
        east : float * 
        north : float * 
        lon : float byref * 
        lat : float byref -> unit 
Parameters
- east
 - Type: SystemDouble
Easting - north
 - Type: SystemDouble
Northing - lon
 - Type: SystemDouble
Longitude - lat
 - Type: SystemDouble
Latitude 
See Also