Re: [OSM-talk] GPS receiver orientation

2008-07-26 Thread Lauri Hahne
2008/7/26 Gervase Markham [EMAIL PROTECTED]:
 Random question: does the orientation of a GPS receiver make any
 difference? If I hold my BGT-11 vertically, will it find it harder to
 get and keep a lock than if I hold it horizontally? Also, does it make
 it slower to get a lock if I walk along while it's trying?

 I don't know the chipset, if that makes a difference - I think it may be
 SirfStar II. The wiki would know (I'm offline as I type).


It all depends on what kind of an antenna your receiver haves. Units
made for car use tend to assume that the signal comes from up and
provide best reception for that direction.


-- 
Lauri Hahne

___
talk mailing list
talk@openstreetmap.org
http://lists.openstreetmap.org/cgi-bin/mailman/listinfo/talk


Re: [OSM-talk] GPS receiver orientation

2008-07-26 Thread Tim Waters (chippy)
On 7/26/08, Gervase Markham [EMAIL PROTECTED] wrote:
 Random question: does the orientation of a GPS receiver make any
  difference? If I hold my BGT-11 vertically, will it find it harder to
  get and keep a lock than if I hold it horizontally?

I really want to do some experimentation with getting a lock from cold
when placed on a dashboard, compared to held stationary in your hand,
standing outside of the car.

Possibly the body acts as a barrier to some satellites, but I've
noticed that locks occur very fast when the GPS is in the car.

___
talk mailing list
talk@openstreetmap.org
http://lists.openstreetmap.org/cgi-bin/mailman/listinfo/talk


Re: [OSM-talk] GPS receiver orientation

2008-07-26 Thread Franc Carter

My entirely annecdotal experience has been that my TomTom 910 takes longer to 
get a fix when I am moving than stationary. I have an external aerial, so the 
movement should be the main determinent

--
Franc
-Original Message-
From: Tim Waters (chippy) [EMAIL PROTECTED]
Date: Saturday, Jul 26, 2008 9:22 pm
Subject: Re: [OSM-talk] GPS receiver orientation
To: Gervase Markham [EMAIL PROTECTED]
CC: talk@openstreetmap.org

On 7/26/08, Gervase Markham [EMAIL PROTECTED] wrote:
 Random question: does the orientation of a GPS receiver make any
  difference? If I hold my BGT-11 vertically, will it find it harder to
  get and keep a lock than if I hold it horizontally?

I really want to do some experimentation with getting a lock from cold when 
placed on a dashboard, compared to held stationary in your hand, standing 
outside of the car.

Possibly the body acts as a barrier to some satellites, but I've
noticed that locks occur very fast when the GPS is in the car.

___
talk mailing list
talk@openstreetmap.org
http://lists.openstreetmap.org/cgi-bin/mailman/listinfo/talk



___
talk mailing list
talk@openstreetmap.org
http://lists.openstreetmap.org/cgi-bin/mailman/listinfo/talk


Re: [OSM-talk] GPS receiver orientation

2008-07-26 Thread Christopher Woods

 On Jul 26, 2008, at 13:37 , Franc Carter wrote:
 
 
  My entirely annecdotal experience has been that my TomTom 910 takes 
  longer to get a fix when I am moving than stationary. I have an 
  external aerial, so the movement should be the main determinent
 
 
 The same for me with my Hamlet GPS receiver. I've seen that 
 if I'm moving it could be unable to get a fix indefinitely 
 (tested up to 30 minutes), while stopping and turning it off 
 and then on usually works less than a couple of minutes.

Is that not how GPS works? Give it a nice stable basis to get its initial
fix on, so it can accurately detect and compare the positions of all the
sats it can see - and then it bases any readings from movement using
differential comparison with the baseline from the initial reading... At
least, that's how I've always considered my GPS receivers to operate (using
less power and processor cycles to boot). Maybe there's an occasional
re-poll for an absolute lock and reference, but surely if the receiver was
recalculating its exact position every second, it'd be out of juice within a
few minutes?

I've always noticed my bluetooth GPS receivers (SiRF chipsets, formerly a
Qstarz BT-Q880 and currently a Navman B10) take much longer to establish a
lock when I'm already driving in the car. But then, I suppose it's obvious
that it'd take longer while a vehicle or person is in motion (and not in a
linear direction either). Or am I barking up the wrong tree?


___
talk mailing list
talk@openstreetmap.org
http://lists.openstreetmap.org/cgi-bin/mailman/listinfo/talk


Re: [OSM-talk] GPS receiver orientation

2008-07-26 Thread Lauri Hahne
That's not how it works. That wouldn't even work as the satellites
move all the time too.

Why it usually requires you to be stationary when getting the first
fix is because you need the ephemeride for each satellite which takes
up to 30 s of continous signal per satellite after your receiver has
found the satellite. In addition - when you move - the frequencies of
the satellites change all the time (due to the doppler effect) and
your receiver has harder time to find them because they can be in
slots which your receiver already consider checked and empty.

The actualy position estimation is done by pseudo-ranging. The
solution has four unknowns (x, y, z, and clock bias b). Receivers
usually start by assuming something reasonable, such as [x,y,z,b] =
[0,0,0,70ms] and the internal clock is set to time get from
satellites. Then the bias is the travel time of the signal from
satellites. It is notable that it's more convenient to represent bias
as meters so you'll get b = 70 ms * c.

Then you'll calculate the distances from your assumed position (now
[0,0,0] in ECEF) to the satellites which you're listening (the
position of the satellites is known from ephemeride) and add the bias
to it.

Then you just apply some magic (linear algebra, usually LMS) and
you'll get a correction vector for your position and bias which you
simply add to your original values to get a new estimate. Then you
repeat this ad infinitum to get updated position estimate.

I've been told by a guy who works in gps rd that cosumer grade gps
units usually do this iteration every 50 ms.

If somebody got interested, please do email me, and I'll post you the
precise formulae for the calculation.

2008/7/26 Christopher Woods [EMAIL PROTECTED]:

 On Jul 26, 2008, at 13:37 , Franc Carter wrote:

 
  My entirely annecdotal experience has been that my TomTom 910 takes
  longer to get a fix when I am moving than stationary. I have an
  external aerial, so the movement should be the main determinent


 The same for me with my Hamlet GPS receiver. I've seen that
 if I'm moving it could be unable to get a fix indefinitely
 (tested up to 30 minutes), while stopping and turning it off
 and then on usually works less than a couple of minutes.

 Is that not how GPS works? Give it a nice stable basis to get its initial
 fix on, so it can accurately detect and compare the positions of all the
 sats it can see - and then it bases any readings from movement using
 differential comparison with the baseline from the initial reading... At
 least, that's how I've always considered my GPS receivers to operate (using
 less power and processor cycles to boot). Maybe there's an occasional
 re-poll for an absolute lock and reference, but surely if the receiver was
 recalculating its exact position every second, it'd be out of juice within a
 few minutes?

 I've always noticed my bluetooth GPS receivers (SiRF chipsets, formerly a
 Qstarz BT-Q880 and currently a Navman B10) take much longer to establish a
 lock when I'm already driving in the car. But then, I suppose it's obvious
 that it'd take longer while a vehicle or person is in motion (and not in a
 linear direction either). Or am I barking up the wrong tree?


 ___
 talk mailing list
 talk@openstreetmap.org
 http://lists.openstreetmap.org/cgi-bin/mailman/listinfo/talk




-- 
Lauri Hahne

___
talk mailing list
talk@openstreetmap.org
http://lists.openstreetmap.org/cgi-bin/mailman/listinfo/talk


Re: [OSM-talk] GPS receiver orientation

2008-07-26 Thread Joerg Ostertag (OSM Tettnang/Germany)
On Samstag 26 Juli 2008, Gervase Markham wrote:
 Random question: does the orientation of a GPS receiver make any
 difference? If I hold my BGT-11 vertically, will it find it harder to
 get and keep a lock than if I hold it horizontally? Also, does it make
 it slower to get a lock if I walk along while it's trying?

 I don't know the chipset, if that makes a difference - I think it may be
 SirfStar II. The wiki would know (I'm offline as I type).

The Antenna of the naviGPS can be seen here:

http://www.ostertag.name/osm/NaviGPS/thumbs/TN_960x1280_img_1220.jpg

which means laying your NaviGPS should result in the best reception.

-- 
Jörg (Germany, Tettnang)

http://www.ostertag.name/
irc://irc.oftc.net/#osm
Tel.: +49 89 420950304
Skype: JoergOstertag

___
talk mailing list
talk@openstreetmap.org
http://lists.openstreetmap.org/cgi-bin/mailman/listinfo/talk


Re: [OSM-talk] GPS receiver orientation

2008-07-26 Thread Gervase Markham
Joerg Ostertag (OSM Tettnang/Germany) wrote:
 The Antenna of the naviGPS can be seen here:
 
 http://www.ostertag.name/osm/NaviGPS/thumbs/TN_960x1280_img_1220.jpg
 
 which means laying your NaviGPS should result in the best reception.

That's very helpful. So if you have a flat antenna like that, it's best
if it is in the horizontal plane?

Gerv


___
talk mailing list
talk@openstreetmap.org
http://lists.openstreetmap.org/cgi-bin/mailman/listinfo/talk


[OSM-talk] GPS receiver orientation

2008-07-25 Thread Gervase Markham
Random question: does the orientation of a GPS receiver make any 
difference? If I hold my BGT-11 vertically, will it find it harder to 
get and keep a lock than if I hold it horizontally? Also, does it make 
it slower to get a lock if I walk along while it's trying?

I don't know the chipset, if that makes a difference - I think it may be 
SirfStar II. The wiki would know (I'm offline as I type).

Gerv




___
talk mailing list
talk@openstreetmap.org
http://lists.openstreetmap.org/cgi-bin/mailman/listinfo/talk