MapProjectionXyz2Geo Method |
Convert coordinates from Euclidean 3D coordinates to geographical coordinates and height.
The 3D coordinate system origin is at the earth center (ellipsoid center)
Namespace:
DHI.Projections
Assembly:
DHI.Projections (in DHI.Projections.dll) Version: 19.0.0.0 (11.1.1.1111)
Syntax public void Xyz2Geo(
double x,
double y,
double z,
out double lon,
out double lat,
out double height
)
Public Sub Xyz2Geo (
x As Double,
y As Double,
z As Double,
<OutAttribute> ByRef lon As Double,
<OutAttribute> ByRef lat As Double,
<OutAttribute> ByRef height As Double
)
public:
void Xyz2Geo(
double x,
double y,
double z,
[OutAttribute] double% lon,
[OutAttribute] double% lat,
[OutAttribute] double% height
)
member Xyz2Geo :
x : float *
y : float *
z : float *
lon : float byref *
lat : float byref *
height : float byref -> unit
Parameters
- x
- Type: SystemDouble
Eucledian x coordinate - y
- Type: SystemDouble
Eucledian y coordinate - z
- Type: SystemDouble
Eucledian z coordinate - lon
- Type: SystemDouble
Longitude - lat
- Type: SystemDouble
Latitude - height
- Type: SystemDouble
Height over ellipsoid
See Also