Hacker News new | ask | show | jobs
by chrisseaton 1703 days ago
> How do you determine true north with a GPS system?

  def true_bearing(magnetic_bearing, location)
    magnetic_bearing + gma(location)
  end
And that's the point - your true bearing is a function of your location.
1 comments

Ah. Right. Duh. (I must be having an even worse day than I thought.)