Skip to content

LatLonAlt

huggins edited this page May 10, 2023 · 1 revision

Lat Lon Alt

Container for Latitude, Longitude, and Altitude coordinates in double-precision (64-bit).

public struct FLatLonAlt

Back to Top


Members

Type Name Description
double Altitude The altitude value in double precision.
double Latitude The latitude value in double precision.
double Longitude The longitude value in double precision.

Back to Top


Constructors

Name Description
FLatLonAlt() Default constructor
FLatLonAlt(double Lat, double Lon, double Alt) Constructor that takes in double-precision lat, lon, and altitude values
FLatLonAlt(Vector3Double lla) Constructor that takes in an OpenDIS Vector3Double

Back to Top


Details

Altitude

double Altitude

The altitude value in double precision.

Back to Top


Latitude

double Latitude

The latitude value in double precision.

Back to Top


Longitude

double Longitude

The longitude value in double precision.

Back to Top


FLatLonAlt

FLatLonAlt()

Default constructor

Back to Top


FLatLonAlt

FLatLonAlt
(
	double Lat, 
	double Lon, 
	double Alt
)

Constructor that takes in double-precision lat, lon, and altitude values

Parameter Description
Alt The altitude value in double precision.
Lat The latitude value in double precision.
Lon The longitude value in double precision.

Back to Top


FLatLonAlt

FLatLonAlt
(
	Vector3Double lla
)

Constructor that takes in an OpenDIS Vector3Double.

Parameter Description
lla A Vector3Double that contains the latitude (X), longitude (Y), and altitude (Z).

Back to Top


Clone this wiki locally