BIS fnc posDegToUTM: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Created page with "{{Function|= Comments ____________________________________________________________________________________________ | TKOH |= Game name |1.00|= Game version ____________________...")
 
m (Text replacement - " |r1=[[" to " |r1= [[")
(28 intermediate revisions by 3 users not shown)
Line 1: Line 1:
{{Function|= Comments
{{RV|type=function
____________________________________________________________________________________________


| TKOH |= Game name
|game1= tkoh
|version1= 1.00


|1.00|= Game version
|game2= arma3
____________________________________________________________________________________________
|version2= 0.50


| Generate an UTM Zone, Easting and Northing from lat and long fields. It uses NAD83 constants. |= Description
|gr1= Map and Markers
____________________________________________________________________________________________


| [latitude,longtitude] call BIS_fnc_posDegToUTM; |= Syntax
|descr= Generate a {{Wikipedia|Universal_Transverse_Mercator_coordinate_system#UTM_zone|UTM Zone}}, Easting and Northing from lat and long fields.
It uses {{Wikipedia|North_American_Datum|NAD83 constants}}.


|p1= latitude: [[Number]] |= Parameter 1
|s1=[longitude, latitude'', zone''] call [[BIS_fnc_posDegToUTM]]


|p2= longtitude - [[Number]] |= Parameter 2
|p1= longitude: [[Number]]


| [[Array]] - [northing,easting,zone] |= Return value
|p2= latitude: [[Number]]
____________________________________________________________________________________________
 
|x1= <code>[47.63959,-122.127249] call BIS_fnc_posDegToUTM;</code> |= Example 1
____________________________________________________________________________________________


| |= See also
|p3= zone: [[Number]] - (Optional, default {{ic|31 + [[floor]] (''longitude'' / 6)}})


}}
|r1= [[Array]] of [[Number|Numbers]] - format [easting, northing, zone]


<h3 style="display:none">Notes</h3>
|x1= <code>_utmZone = [47.63959,-122.127249] [[call]] [[BIS_fnc_posDegToUTM]];</code>
<dl class="command_description">
<!-- Note Section BEGIN -->


<!-- Note Section END -->
|seealso= [[BIS_fnc_posDegToWorld]], [[BIS_fnc_posUTMToDeg]]
</dl>
}}
 
<h3 style="display:none">Bottom Section</h3>
 
[[Category:Take_On_Helicopters:_Functions|posDegToUTM]]

Revision as of 23:27, 7 August 2021

Hover & click on the images for description

Description

Description:
Generate a UTM Zone, Easting and Northing from lat and long fields. It uses NAD83 constants.
Execution:
call
Groups:
Map and Markers

Syntax

Syntax:
[longitude, latitude, zone] call BIS_fnc_posDegToUTM
Parameters:
longitude: Number
latitude: Number
zone: Number - (Optional, default 31 + floor (longitude / 6))
Return Value:
Array of Numbers - format [easting, northing, zone]

Examples

Example 1:
_utmZone = [47.63959,-122.127249] call BIS_fnc_posDegToUTM;

Additional Information

See also:
BIS_fnc_posDegToWorldBIS_fnc_posUTMToDeg

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