View Single Post
  #11 (permalink)  
Old 11-06-2008, 02:25 PM
derez's Avatar
derez derez is offline
Basic4ppc Expert
 
Join Date: May 2007
Posts: 978
Awards Showcase
Beta Tester Competition Winner 
Total Awards: 2
Default altitude

Agraham
I used this code to display both altitudes on the same form:

If gpsd.SeaLevelAltitude <> gpsd.InvalidData Then
t_alt = gpsd.SeaLevelAltitude
tb1.Text = t_alt
If gpsd.EllipsoidAltitude<> gpsd.InvalidData Then tb2.Text = gpsd.EllipsoidAltitude Else tb2.Text = "x"
End If

what I see is that while the sealevel Alt is changing , as a result of non-optimized satellites reception, the ellipsoid is static. It is not functioning correctly, at least in my device and program.
Can you please check or tell me what I'm doing wrong ?

thanks
Attached Images
File Type: jpg Screen01.jpg (49.5 KB, 32 views)
__________________
David Erez
Ramat Hasharon, Israel
Reply With Quote