in reply to Re: How do I compute the longitude and latitude of a point at a certain distance?
in thread How do I compute the longitude and latitude of a point at a certain distance?

I think that this is almost right, but not quite. c/360 gives the distance north-south per degree, whereas what we actually want is degrees per unit distance NS, ie 360/c. Similarly for the distance EW. We want the final result to have dimensions of an angle but the equations that you give have inconsistent dimensions (angle + distance^2/angle).

The two equations should be:

The mean radius of the earth is 6371 km (NASA), so c = 40030 km.

  • Comment on Re: Re: How do I compute the longitude and latitude of a point at a certain distance?

Replies are listed 'Best First'.
Re: Re: Re: How do I compute the longitude and latitude of a point at a certain distance?
by zengargoyle (Deacon) on Apr 22, 2003 at 09:06 UTC

    you are so correct! i should have made a units thingy.

    
    
    360 deg  |  EW m    360*EW deg  
    ---------|------- = ----------
     c' m    |    1         c'
    
    <