Tagged Questions
4
votes
4answers
2k views
Great Circle Distance question
I am familiar with the formula to calculate the Great Circle Distance between two points.
i.e.
<?php
$theta = $lon1 - $lon2;
$dist = sin(deg2rad($lat1)) * sin(deg2rad($lat2)) + ...
0
votes
2answers
86 views
How to check if a point(lonc,latc) lie on a great circle running from (lona,lata) to (lonb,latb) [closed]
I'm trying to produce a boolean method that will return true if a point (lonc,latc) lies on a great circle arc starting at (lona,lata) and ending at (lonb,latb)
the point of the method returning true ...