DCS func LOtoLL

From DCS World Wiki - Hoggitworld.com

Scripting Root

Envrioment: Mission Scripting
Function: LOtoLL Added with: 1.2.0
Member Of: coord
Syntax: latitude, longitude, altitude coord.LOtoLL(table vec3 )
Description: Returns multiple values of a given vec3 point in latitude, longitude, and altitude


Return Value: latitude, longitude, altitude
Return Example: Returned from printing the lat and lon values to a log file.
   41.4795673
  -82.681172
Examples: The following would be used to output the lat and lon of a unit named bob.
   local curPoint = Unit.getByName('bob'):getPoint()
   local lat, lon, alt = coord.LOtoLL(curPoint)
   trigger.action.outText('Bob is at the raw coordinates of \nLatitude: ' .. lat .. ' \nLongitude: ' .. lon .. '\nAltitude: ' .. alt, 20)
Related Functions: Coord Functions: LLtoLO, LOtoLL, LLtoMGRS, MGRStoLL
Notes: