![]() |
2008-02-23
, 16:06
|
Posts: 479 |
Thanked: 58 times |
Joined on Dec 2007
@ Dubai, UAE
|
#22
|
![]() |
2008-02-25
, 17:45
|
|
Posts: 716 |
Thanked: 236 times |
Joined on Dec 2007
|
#23
|
The Following User Says Thank You to tz1 For This Useful Post: | ||
![]() |
2008-02-26
, 07:23
|
Posts: 479 |
Thanked: 58 times |
Joined on Dec 2007
@ Dubai, UAE
|
#24
|
![]() |
2008-02-26
, 11:20
|
|
Posts: 276 |
Thanked: 160 times |
Joined on Jul 2007
@ Bath, UK
|
#25
|
![]() |
2008-02-26
, 14:32
|
Posts: 144 |
Thanked: 45 times |
Joined on Oct 2007
@ Detroit
|
#26
|
Forget GPS and use WII remote. There is already many projects + maemo garage projects Py Axel Wii (http://pyaxelwii.garage.maemo.org/)
Well you could use gps for accuring and sync location coordinates when you are standing still (GPS accuracy as it best). I believe this could be great feature for maemo mapper as well. N800 users wouldn't even need gps because they could just point out start position at map layout. Thats assuming they know where they are.
![]() |
2008-02-26
, 17:50
|
Posts: 144 |
Thanked: 45 times |
Joined on Oct 2007
@ Detroit
|
#27
|
I've thought about this too. I've got my N800 mounted to the handlebars of my motorcycle with Maemo mapper running too.
I actually know the guys who provide the GPS systems they use in NASCAR over here in the USA. To get the accuracy they wanted, they combined a GPS system with an inertial measurement system. Seems that GPS suffered from occasional reflection off of other cars.
Is there simple snippets of code somewhere to show GPS logging? I'd like to play with it. I have a track day scheduled in about a month down here in Houston.
David
![]() |
2008-02-26
, 19:30
|
|
Posts: 276 |
Thanked: 160 times |
Joined on Jul 2007
@ Bath, UK
|
#28
|
What kind of mounting do you have to keep the N800 on the handlebars?
if you have gpsd and python, here is the python code to get the gps data
import gps, os, time
session = gps.gps()
while 1:
os.system('clear')
session.query('admos')
# a = altitude, d = date/time, m=mode,
# o=postion/fix, s=status, y=satellites
print ' GPS reading'
print '----------------------------------------'
print 'latitude ' , session.fix.latitude
print 'longitude ' , session.fix.longitude
print 'time utc ' , session.utc, session.fix.time
print 'altitude ' , session.fix.altitude
print 'eph ' , session.fix.eph
print 'epv ' , session.fix.epv
print 'ept ' , session.fix.ept
print 'speed ' , session.fix.speed
print 'climb ' , session.fix.climb
time.sleep(1)
![]() |
2008-02-26
, 20:14
|
Posts: 67 |
Thanked: 13 times |
Joined on Feb 2008
@ U.S.A.
|
#29
|
But let me break some misconceptions and myths.
The location is ACCURATE to only a 2.5-3 meters, but is PRECISE to a much smaller space especially over a very short time when the satellites used aren't changing and all have the same error. Otherwise every fix would swing in and out within the 3 meters. It doesn't. It often moves by a micro degree or two at most.
![]() |
2008-02-26
, 20:42
|
Posts: 479 |
Thanked: 58 times |
Joined on Dec 2007
@ Dubai, UAE
|
#30
|
Also, does the application you folks are discussing require OBD updates more frequently than ~0.03Hz? If so, that could be an issue. This video review of Carman/Elmscan 5 shows very sluggish realtime performance from the OBD interface (guages update once or twice a minute).
Last edited by jgombos; 2008-02-23 at 05:30.