Reputation: 97
I am trying to Understand that What happens to the Latitude longitude when moving to North or south or east or West.
Suppose My current GPS coordinates are;
Latitude = 33.659832 Longitude = 72.345678
Now what will be New Latitude/Longitude 30 METERS to the North of my position also tell me towards south, east and west direction. Please be specific thanks
Upvotes: 0
Views: 4149
Reputation: 28767
Latitude is related to South -> North If you move North, the latitude increases, if moving south it decreases.
Longitude is related to West -> East If you move East, the longitude increases until 180 and when you cross that datum limit it jumps to -180.
If you want to calculate a new coordinate by offset meters and direction, you find code here at stackoverflow.
To play with coordinates you can use http://www.geomidpoint.com/destination/ where you enter the coordinate and the offset in km, and the compass direction in degrees.
The calculation is done either using
Upvotes: 3