# GPS error

**URL:** https://forum.sierrawireless.com/t/gps-error/974
**Category:** Open AT
**Created:** [December 27, 2006, 10:05pm UTC](https://forum.sierrawireless.com/t/gps-error/974 "2006-12-27T22:05:39Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![sergiofernando](https://avatars.discourse-cdn.com/v4/letter/s/0ea827/32.png) [@sergiofernando](https://forum.sierrawireless.com/u/sergiofernando)
#### Post date: [December 27, 2006, 10:05pm UTC](https://forum.sierrawireless.com/t/gps-error/974/1 "2006-12-27T22:05:39Z")

</div>

Hi all,  
in my application I simply activate GPS in internal mode:

adl\_gpsSubscribe ( GpsHandler, 1);

ascii Latitude[50];  
ascii Longitude[50];  
wm\_sprintf ( Latitude, GPSData-\>Position.latitude);  
wm\_sprintf ( Longitude, GPSData-\>Position.longitude);  
wm\_sprintf(Buff,“Latitude: %s ; Longitude: %s\r\n”,Latitude, Longitude);  
adl\_atSendResponse ( ADL\_AT\_UNS, Buff );

during first 5 minutes i receive the coordinares normally:

Latitude: 0803.81961 ; Longitude: 03452.69350  
Latitude: 0803.81962 ; Longitude: 03452.69349  
Latitude: 0803.81963 ; Longitude: 03452.69349  
Latitude: 0803.81963 ; Longitude: 03452.69348  
Latitude: 0803.81964 ; Longitude: 03452.69348

but after that:

Latitude: ; Longitude:  
Latitude: ; Longitude:  
Latitude: 0803.81942 ; Longitude: 03452.69422  
Latitude: 0803.81940 ; Longitude: 03452.69423  
Latitude: ; Longitude:  
Latitude: 0803.81944 ; Longitude: 03452.69424  
Latitude: ; Longitude:  
Latitude: ; Longitude:  
Latitude: 0803.81918 ; Longitude: 03452.69412  
Latitude: 0803.81935 ; Longitude: 03452.69407

after some time receiving wrong coordinates, i receive them right again, and so on…

the antenna is not moving and the module(Q2501B) is being supplyed by a relyable power source.

any ideas?

SÃ©rgio

---

<div class="post-metadata">

### Author: ![johann](https://avatars.discourse-cdn.com/v4/letter/j/54ee81/32.png) [@johann](https://forum.sierrawireless.com/u/johann)
#### Post date: [December 6, 2018, 4:36pm UTC](https://forum.sierrawireless.com/t/gps-error/974/2 "2018-12-06T16:36:51Z")

</div>

Hi Sergio,  
there is nothing wrong with that as GPS signal has to follow a pretty long way and the reception is a multi-factor eqn as the signal can be modified by the weather, clouds, multipath and so on.  
If the precision is less important than the precision AND the consumption (CPU, current) you could set a reception using GPS + GLONASS at the same time which increase the number of sat. available and you can finally retrieve some precision using some math and in some case the map mapping is a pretty good solution too.  
I hope it will gives you a clue to go a step further in your project!  
Johann
