getPosASL: Difference between revisions

From Bohemia Interactive Community
Jump to navigation Jump to search
m (Text replacement - "\[(http.+flashpoint1985\.com.+) (.+)\]" to "{{ExternalLink|link= $1|text= $2}}")
m (Some wiki formatting)
Line 13: Line 13:
|version4= 1.50
|version4= 1.50


|game5= arma3
|game5= tkoh
|version5= 0.50
|version5= 1.00


|game6= ofp
|game6= arma3
|version6= 1.99
|version6= 0.50
 
|game7= ofp
|version7= 1.99


|arg= global
|arg= global
Line 39: Line 42:


<dl class="command_description">
<dl class="command_description">
<dt><dt>
<dt><dt>
<dd class="notedate">Posted on 23 Feb, 2007</dd>
<dd class="notedate">Posted on 23 Feb, 2007</dd>
Line 45: Line 49:
<code>[[getPosASL]] _obj [[select]] 2;</code>  
<code>[[getPosASL]] _obj [[select]] 2;</code>  
might sometimes return the vertical position above sea level, but over land for stacked objects, it returns the vertical position above the object beneath it or at least affected by this offset. The same problem exists for [[getPos]]. There was a {{ExternalLink|link= http://www.flashpoint1985.com/cgi-bin/ikonboard311/ikonboard.cgi?s=e587356595b907e91f96b8817d7f8a26;act=ST;f=71;t=57918|text= discussion}} thread in the BIS forums which suggested the use of the command [[modelToWorld]] instead to get around this issue where an absolute vertical position is required. ArmA Ver '''1.02'''.
might sometimes return the vertical position above sea level, but over land for stacked objects, it returns the vertical position above the object beneath it or at least affected by this offset. The same problem exists for [[getPos]]. There was a {{ExternalLink|link= http://www.flashpoint1985.com/cgi-bin/ikonboard311/ikonboard.cgi?s=e587356595b907e91f96b8817d7f8a26;act=ST;f=71;t=57918|text= discussion}} thread in the BIS forums which suggested the use of the command [[modelToWorld]] instead to get around this issue where an absolute vertical position is required. ArmA Ver '''1.02'''.
</dd>
<dt><dt>
<dt><dt>
<dd class="notedate">Posted on 27 Mar, 2014</dd>
<dd class="notedate">Posted on 27 Mar, 2014</dd>
Line 52: Line 58:
Conversion keep this speed ratio and is structured like: <code>[[ASLtoATL]] [[getPosASL]] [[Object]];</code>
Conversion keep this speed ratio and is structured like: <code>[[ASLtoATL]] [[getPosASL]] [[Object]];</code>
</dd>
</dd>
</dl>


<dl class="command_description">
<dt></dt>
<dt></dt>
<dd class="notedate">Posted on June 1, 2018 - 09:36 (UTC)</dd>
<dd class="notedate">Posted on June 1, 2018 - 09:36 (UTC)</dd>
Line 61: Line 65:
Further to Florian's post, getPosASL is indeed faster than position and getpos, but is no faster that getposATL
Further to Florian's post, getPosASL is indeed faster than position and getpos, but is no faster that getposATL
</dd>
</dd>
</dl>
</dl>

Revision as of 15:32, 10 June 2021

Hover & click on the images for description

Description

Description:
Returns the object position height above sea level.
Groups:
Positions

Syntax

Syntax:
getPosASL object
Parameters:
object: Object
Return Value:
Array - format PositionASL

Examples

Example 1:
_AslPos = getPosASL player;
Example 2:
hint format ["position above sea level: %1", (getPosASL player) select 2];

Additional Information

See also:
getPosASLVisualsetPosASLsetPosASL2positiongetPosgetPosATLgetPosASLWvisiblePositionvisiblePositionASLgetTerrainHeightASL

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
Posted on 23 Feb, 2007
Dr_Eyeball
getPosASL _obj select 2; might sometimes return the vertical position above sea level, but over land for stacked objects, it returns the vertical position above the object beneath it or at least affected by this offset. The same problem exists for getPos. There was a discussion (dead link) thread in the BIS forums which suggested the use of the command modelToWorld instead to get around this issue where an absolute vertical position is required. ArmA Ver 1.02.
Posted on 27 Mar, 2014
Floriangeyer
According to Code Optimisation, this function is the fastest (2x) and should be used instead of getPos, getPosATL and position. Conversion keep this speed ratio and is structured like: ASLtoATL getPosASL Object;
Posted on June 1, 2018 - 09:36 (UTC)
Tankbuster
Further to Florian's post, getPosASL is indeed faster than position and getpos, but is no faster that getposATL