In what unit does the dGPS measure distance to a target (I would assume meters, but could you please clarify)?
Could you please provide me with the URL’s for the dGPS Google Maps tutorial and the dGPS user guide (The link to the user guide you provided above returns the “404 error”).
I am currently doing a project in which I am programming a robot car (EV3) to travel to a set latitude and longitude, using my dGPS.
What is the difference between Relative Heading and Travel Heading?
Hi Kyle,It’s been a while since I looked at these calls. But . . .
Travel Heading is a function that reads the GPS position and calculates the angle traveled since the function was last called. When used over distance, this function can serve as a more precise compass than the GPS output.
Calling the function intermittently over travel distances greater than 10 feet will give a more accurate compass reading.
The function works as follows:
When the function is first called, the GPS coordinates are stored in the GPS chip. We will call the coordinates C1.
When the function is called a second time, the coordinates at that point are stored (we’ll call them C2) and the angle between C1 and C2 is returned through the Angle of Travel Port.
When the function is called a third time, the coordinates at that point are stored (C3), and the angle between C2 and C3 is returned through the Angle of Travel Port.
Relative travel calculates the angle you’re traveling vs the angle you’ve travelled (how far off you are from your heading).
How does the dGPS calculate distance to destination? (If you could just give me the general gist).
And is the distance to destination measurement any more/less uncertain (or about the same) than just reading the GPS coordinates?
Thanks again for your time! Just in case you are wondering, the reason why I am asking so many questions is because I am doing a project for a very prestigious science fair, and I am using your dGPS for it; so I need to know enough info about the equipment I’m working with.
I think, if I remember correctly, it uses a set of math functions that calculates the distance between the most recent GPS coordinates, and the coordinates input as a destination. It returns the value of distance. Maybe you can tell me more about what exactly you’re looking for here, and I can frame the answer in a more specific way?
Uncertainty in distance to destination should just be the uncertainty introduced by the GPS module. No more or less I think.
Good luck on the science fair, that’s great! Please let us know how it goes!