Convert coordinates from geographical coordinates to local grid x-y coordinates
Namespace:
DHI.Projections
Assembly:
DHI.Projections (in DHI.Projections.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntax public void Geo2Xy(
double lon,
double lat,
out double x,
out double y
)
Public Sub Geo2Xy (
lon As Double,
lat As Double,
<OutAttribute> ByRef x As Double,
<OutAttribute> ByRef y As Double
)
public:
void Geo2Xy(
double lon,
double lat,
[OutAttribute] double% x,
[OutAttribute] double% y
)
member Geo2Xy :
lon : float *
lat : float *
x : float byref *
y : float byref -> unit
Parameters
- lon
- Type: SystemDouble
Longitude - lat
- Type: SystemDouble
Latitude - x
- Type: SystemDouble
Local grid x coordinate - y
- Type: SystemDouble
Local grid y coordinate
See Also