BIS fnc posDegToUTM: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[\[Category:Function Group: [a-zA-Z0-9_: ]+(\|\{\{[a-zA-Z0-9_: ]+\}\})?\]\]" to " ")
m (Text replacement - "_{10,} " to "")
Line 1: Line 1:
{{Function|Comments=
{{Function|Comments=
____________________________________________________________________________________________


| tkoh |Game name=
| tkoh |Game name=
Line 7: Line 6:


|gr1 = Map and Markers |GROUP1=
|gr1 = Map and Markers |GROUP1=
____________________________________________________________________________________________


| Generate a [https://en.wikipedia.org/wiki/Universal_Transverse_Mercator_coordinate_system#UTM_zone UTM Zone], Easting and Northing from lat and long fields.
| Generate a [https://en.wikipedia.org/wiki/Universal_Transverse_Mercator_coordinate_system#UTM_zone UTM Zone], Easting and Northing from lat and long fields.
It uses [https://en.wikipedia.org/wiki/North_American_Datum NAD83 constants]. |Description=
It uses [https://en.wikipedia.org/wiki/North_American_Datum NAD83 constants]. |Description=
____________________________________________________________________________________________


| [longitude, latitude'', zone''] call [[BIS_fnc_posDegToUTM]] |Syntax=
| [longitude, latitude'', zone''] call [[BIS_fnc_posDegToUTM]] |Syntax=
Line 22: Line 19:


| [[Array]] of [[Number|Numbers]] - format [easting, northing, zone] |Return value=
| [[Array]] of [[Number|Numbers]] - format [easting, northing, zone] |Return value=
____________________________________________________________________________________________


|x1= <code>_utmZone = [47.63959,-122.127249] [[call]] [[BIS_fnc_posDegToUTM]];</code> |Example 1=
|x1= <code>_utmZone = [47.63959,-122.127249] [[call]] [[BIS_fnc_posDegToUTM]];</code> |Example 1=
____________________________________________________________________________________________


| [[BIS_fnc_posDegToWorld]], [[BIS_fnc_posUTMToDeg]] |See also=
| [[BIS_fnc_posDegToWorld]], [[BIS_fnc_posUTMToDeg]] |See also=

Revision as of 00:54, 17 January 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

Notes

Bottom Section