-
Notifications
You must be signed in to change notification settings - Fork 4
LatLonAlt
huggins edited this page May 10, 2023
·
1 revision
Container for Latitude, Longitude, and Altitude coordinates in double-precision (64-bit).
public struct FLatLonAlt
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. |
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 |
double Altitude
The altitude value in double precision.
double Latitude
The latitude value in double precision.
double Longitude
The longitude value in double precision.
FLatLonAlt()
Default constructor
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. |
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). |