BIS fnc posUTMToDeg: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Generated by BIS_fnc_exportFunctionsToWiki)
 
m (Created page with "{{Function|= Comments ____________________________________________________________________________________________ | TKOH |= Game name |1.00|= Game version ____________________...")
Line 1: Line 1:
{{Function|= Comments
{{Function|= Comments
____________________________________________________________________________________________
____________________________________________________________________________________________


| tkoh |= Game name
| TKOH |= Game name


|1.00|= Game version
|1.00|= Game version
____________________________________________________________________________________________
____________________________________________________________________________________________


| <pre>/*
| Generate Lat and Long fields from UTM Zone, Easting and Northing. It uses NAD83 constants. |= Description
____________________________________________________________________________________________


Description:
| [northing, easting, zone, (hemisphere)] call BIS_fnc_posUTMToDeg; |= Syntax
Generate Lat and Long fields from UTM Zone, Easting and Northing. It uses NAD83 constants.


Parameter(s):
|p1= northing: [[Number]] |=
_this select 0: NUMBER - Northing
_this select 1: NUMBER - Easting
_this select 2: NUMBER - Zone
_this select 3 (Optional): STRING - Hemisphere ("N" or "S")


Returns:
|p2= easting - [[Number]] |=
ARRAY - [longtitude,latitude]
*/
</pre><small>''(Placeholder description extracted from the function header by [[BIS_fnc_exportFunctionsToWiki]])''</small> |= Description
____________________________________________________________________________________________


| <!-- [] call [[BIS_fnc_posUTMToDeg]]; --> |= Syntax
|p3= zone - [[Number]] |=


|p1= |= Parameter 1
|p4= hemisphere - [[String]] - "N" or "S" (default: "N") |=


| |= Return value
| [[Array]] - [longtitude,latitude] |= Return value
____________________________________________________________________________________________
____________________________________________________________________________________________
 
 
|x1= <code></code> |=  
|x1= <code>[5273702,560561,10] call BIS_fnc_posUTMToDeg;</code> |= Example 1
____________________________________________________________________________________________
____________________________________________________________________________________________


Line 47: Line 38:


<h3 style="display:none">Bottom Section</h3>
<h3 style="display:none">Bottom Section</h3>
[[Category:Function Group: Map|{{uc:posUTMToDeg}}]]
 
[[Category:Functions|{{uc:posUTMToDeg}}]]
[[Category:Take_On_Helicopters:_Functions|posUTMToDeg]]
[[Category:{{Name|tkoh}}: Functions|{{uc:posUTMToDeg}}]]
[[Category:{{Name|arma3}}: Functions|{{uc:posUTMToDeg}}]]

Revision as of 19:22, 21 October 2011

Hover & click on the images for description

Description

Description:
Generate Lat and Long fields from UTM Zone, Easting and Northing. It uses NAD83 constants.
Execution:
call
Groups:
Uncategorised

Syntax

Syntax:
[northing, easting, zone, (hemisphere)] call BIS_fnc_posUTMToDeg;
Parameters:
northing: Number
easting - Number
zone - Number
hemisphere - String - "N" or "S" (default: "N")
Return Value:
Array - [longtitude,latitude]

Examples

Example 1:
[5273702,560561,10] call BIS_fnc_posUTMToDeg;

Additional Information

See also:
See also needed

Notes

Report bugs on the Feedback Tracker and/or discuss them on the Arma Discord or on the Forums.
Only post proven facts here! Add Note

Notes

Bottom Section