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