| MapProjectionGeo2Xyz Method  | 
 
            Convert coordinates from geographical coordinates and height to 3D Euclidean coordinates.
            
            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
Syntaxpublic void Geo2Xyz(
	double lon,
	double lat,
	double height,
	out double x,
	out double y,
	out double z
)
Public Sub Geo2Xyz ( 
	lon As Double,
	lat As Double,
	height As Double,
	<OutAttribute> ByRef x As Double,
	<OutAttribute> ByRef y As Double,
	<OutAttribute> ByRef z As Double
)
public:
void Geo2Xyz(
	double lon, 
	double lat, 
	double height, 
	[OutAttribute] double% x, 
	[OutAttribute] double% y, 
	[OutAttribute] double% z
)
member Geo2Xyz : 
        lon : float * 
        lat : float * 
        height : float * 
        x : float byref * 
        y : float byref * 
        z : float byref -> unit 
Parameters
- lon
- Type: SystemDouble
 Longitude
- lat
- Type: SystemDouble
 Latitude
- height
- Type: SystemDouble
 Height over ellipsoid
- x
- Type: SystemDouble
 Eucledian x coordinate
- y
- Type: SystemDouble
 Eucledian y coordinate
- z
- Type: SystemDouble
 Eucledian z coordinate
 See Also
See Also