MapPoint Forums

MapForums

Community of VE/MapPoint Users and Developers




GPS position check

This is a discussion on GPS position check within the MapPoint 2006/2009 Discussion forums, part of the Map Forums category; Hello Everyone, Anyone know a way to make mappoint check for your position every second vs. every 15 seconds? Maybe ...


Go Back   MapPoint Forums > Map Forums > MapPoint 2006/2009 Discussion

Register Blogs FAQ Members List Calendar Search Today's Posts Mark Forums Read



Click here to register

Reply

 

LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 11-25-2002
Senior Member
Black Belt
 
Join Date: Jul 2002
Posts: 5,138
GPS position check

Hello Everyone,

Anyone know a way to make mappoint check for your position every second vs. every 15 seconds?

Maybe some kind of registry key or something? I'm new as you can tell.

Thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #2 (permalink)  
Old 11-25-2002
Eric Frost's Avatar
Senior Member
Black Belt
 
Join Date: Jul 1992
Posts: 2,384
Blog Entries: 1
There's no registry setting AFAIK, but there is a way to "hack" the .exe (I think) using a binary editor and change some value from 15 to 1, but as I understand it such hacking is illegal.

A better option would be to use an add-on such as GPS Plus for MapPoint ( http://www.engo.com/mappointtoolbox/ ) or AGPS ( http://www.techgt.com/agps/ )

Eric
__________________
~ Now taking orders for MapPoint 2009 ~
~
~ Upgrade to MapForums Plus membership ~
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #3 (permalink)  
Old 11-28-2002
Member
Yellow Belt
 
Join Date: Aug 2002
Posts: 45
You can try NavStar 2002

Mobile GPS Online has developed an advanced GPS Navigation System based on Mappoint 2002. You can download a eval copy from http://www.mobilegpsonline.com/products.htm.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #4 (permalink)  
Old 12-23-2002
Member
Yellow Belt
 
Join Date: Dec 2002
Posts: 35
part of the problem here is that the mappoint gps tracking REQUIRES nmea2 at a slow baud rate.

nmea2 contains a dumpload of data to transfer the satellite information (up to 12 satellites worth on most gps units).. and as far as i can figure it, mappoint doesnt even USE the satellite data. the actual lat/long data only comes once per cycle through all the nmea2 data. the bottom line is that it can only track as often as it receives that data.

if mappoint allowed nmea1 at a faster baud rate, it would be able to get the position every couple of seconds...
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #5 (permalink)  
Old 12-23-2002
Member
Yellow Belt
 
Join Date: Aug 2002
Posts: 45
Try NavStar from Mobile GPS Online

Mobile GPS Online's NavStar can update GPS postion every second. It is realy real time.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #6 (permalink)  
Old 12-23-2002
Member
Yellow Belt
 
Join Date: Dec 2002
Posts: 35
yes, they must have written their own serial port listener (it's quite easy to do)

prepare the port in form load:
Code:
   ' Use COM1.
   MSComm1.CommPort = 1
   ' 19200 baud, no parity, 8 data, and 1 stop bit.
   MSComm1.Settings = "19200,N,8,1"
   ' Tell the control to read entire buffer when Input
   ' is used.
   MSComm1.InputLen = 0
   ' Open the port.
   MSComm1.PortOpen = True
then you need to listen.. the code here is triggered when the com port receives data. this code will also parse the nmea for lat and long(i cant remember which spec i am parsing here. NMEA1 or something):
Code:
Private Sub MSComm1_OnComm()
Dim instring As String
Dim lat As String
Dim lng As String

Dim i As Integer
instring = MSComm1.Input
i = InStr(instring, "GPGLL")
Do While Len(instring) - i < 26
    instring = instring & MSComm1.Input
Loop
lat = Mid(instring, i + 6, 9)
lng = Mid(instring, i + 16, 10)
Text1.Text = lat
Text1.Text = Text1.Text & " -- " & lng
End Sub
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #7 (permalink)  
Old 05-16-2003
Senior Member
Black Belt
 
Join Date: Jul 2002
Posts: 5,138
Mappoint refresh

I am very new to GPS, but I installed AGPS (10.00) and its default is every 2 seconds.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #8 (permalink)  
Old 06-01-2003
Senior Member
Black Belt
 
Join Date: Jul 2002
Posts: 5,138
Re: Mappoint refresh

Quote:
Originally Posted by MConley
I am very new to GPS, but I installed AGPS (10.00) and its default is every 2 seconds.
Did you buy it?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #9 (permalink)  
Old 06-01-2003
Senior Member
Black Belt
 
Join Date: Jul 2002
Posts: 5,138
Re: Mappoint refresh

Quote:
Originally Posted by MConley
I am very new to GPS, but I installed AGPS (10.00) and its default is every 2 seconds.
Hi someone has Agps valid key to lend me?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
  #10 (permalink)  
Old 06-15-2003
Junior Member
White Belt
 
Join Date: Jun 2003
Posts: 1
gps position check

where do i insert this code?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote
Reply

Tags
check, gps, position


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)

 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

Similar Threads

Thread Thread Starter Forum Replies Last Post
Check out if GPS pos is on a Route kristijan MapPoint 2006/2009 Discussion 11 04-19-2006 10:46 AM
Sanity Check Please......Pushpin help EdB MapPoint 2006/2009 Discussion 2 02-22-2005 07:44 AM
Is there way to check if you're on a road Omair MapPoint 2006/2009 Discussion 1 01-05-2005 06:56 AM
need to check accuracy of MP2004 jaharris67 MapPoint 2006/2009 Discussion 0 09-15-2004 11:28 PM
How do I check to see if there is mappoint installed on a sy dew1969 MapPoint 2006/2009 Discussion 3 02-18-2004 10:05 AM


All times are GMT -5. The time now is 06:43 PM.


Powered by vBulletin® Version 3.7.2
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
MP2K Magazine
Visitor Map

Bargain Flights
Book fantastic bargain flights online. Check out the great prices to top destinations. Visit Holiday Hypermarket to bag a bargain.

Turkey Holidays
Find and book Turkey Holidays with Travel Counsellors. Holiday destinations around the world including Turkey.

Cheap Holidays to Turkey
If you’re looking for cheap holidays to Turkey then dealchecker.co.uk is the place for you! Our search helps you see real prices from the UK’s top holiday companies all in one go.

Holidays in Dubai
Holidays in Dubai are an eclectic mix of the ancient and the modern. Discover an oasis of luxury amid the Arabian desert. Book here now!

Greece
Greece covers a large area and as a result there is an abundance of things to do, see and taste. You can relax on a beach, visit ancient sites or make a trip to one of the islands like Corfu, Crete or Rhodes.

Cheap Travel
Travel.co.uk has some excellent offers on cheap travel. Click here.

Fuerteventura Holidays
Visit one of the closest Canary Islands to Africa! Book Fuerteventura holidays at On The Beach!


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52