gps accuracy always Position.QUALITY_GOOD

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;

...

  • small update:

    i tried many small changes on the code but on every test i got the same result: gps accuracy stuck at 4. So i decided to leave the code back to the first i wrote and now i can see the gps accuracy changing from 4 (outside, open air) to 2 inside a bulding. I really don't know why ....