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