Difference between revisions of "DCS func LLtoMGRS"

From DCS World Wiki - Hoggitworld.com
Line 55: Line 55:
 
}}
 
}}
 
[[Category:Singleton Functions|LLtoMGRS]]
 
[[Category:Singleton Functions|LLtoMGRS]]
 +
[[Category:Game Patch 1.2.0|LLtoMGRS]]

Revision as of 22:15, 17 March 2022

Scripting Root

Envrioment: Mission Scripting
Function: LLtoMGRS Added with: 1.2.0
Member Of: coord
Syntax: MGRS table coord.LLtoMGRS(GeoCoord latitude , GeoCoord longitude )
Description: Returns an MGRS table from the latitude and longitude coordinates provided. Note that in order to get the MGRS coordinate from a vec3 you must first use coord.LOtoLL on it.


Return Value: MGRS table
Return Example: example table
MGRS = {
  UTMZone = string,
  MGRSDigraph = string,
  Easting = number,
  Northing = number
}
Examples: The following will output the full returned value as a string.
   local grid = coord.LLtoMGRS(coord.LOtoLL(Unit.getByName('bobTheTarget')))
   local s = grid.UTMZone .. ' ' .. grid.MGRSDigraph .. ' ' .. grid.Easting .. ' ' .. grid.Northing
   trigger.action.outText(s, 20)
Related Functions: Coord Functions: LLtoLO, LOtoLL, LLtoMGRS, MGRStoLL
Notes: