I scroll down along the post about the gps accuracy and i realyze i am the only one that has the fenix 5x pro with gps accuracy always QUALITY_GOOD. I tried to move inside my house and other not open space places but i get always 4 as accuracy (QUALITY_GOOD).
i'm using the following code:
into init()
var options = {
:acquisitionType => Position.LOCATION_CONTINUOUS,
};
if (Position has :POSITIONING_MODE_AVIATION) {options[:mode] = Position.POSITIONING_MODE_AVIATION;}
Position.enableLocationEvents( options, method( :onPosition ) );
into function onPosition()
// CALLBACK CALLED BY ONEVENT GPS
function onPosition( info as Position.Info ) as Void
{
// retrieve GPS accuracy
GPSquality=info.accuracy;
...