Questions tagged [great-circle]

A great circle of a sphere is the intersection of the sphere and a plane which passes through the center point of the sphere. Used in navigation to determine the shortest distance between two points on the globe.

A great circle, also known as an orthodrome or Riemannian circle, of a sphere is the intersection of the sphere and a plane which passes through the center point of the sphere. This partial case of a circle of a sphere is opposed to a small circle, the intersection of the sphere and a plane which does not pass through the center. Any diameter of any great circle coincides with a diameter of the sphere, and therefore all great circles have the same circumference as each other, and have the same center as the sphere. A great circle is the largest circle that can be drawn on any given sphere. Every circle in Euclidean 3-space is a great circle of exactly one sphere.

For most pairs of points on the surface of a sphere there is a unique great circle through the two points. The exception is a pair of antipodal points, for which there are infinitely many great circles. The minor arc of a great circle between two points is the shortest surface-path between them. In this sense the minor arc is analogous to “straight lines” in Euclidean geometry. The length of the minor arc of a great circle is taken as the distance between two points on a surface of a sphere in Riemannian geometry. The great circles are the geodesics of the sphere.

Great-circle navigation is the practice of navigating a vessel (a ship or aircraft) along a great circle. A great circle track is the shortest distance between two points on the surface of a sphere; the Earth isn't exactly spherical, but the formulas for a sphere are simpler and are often accurate enough for navigation.

Useful Links

92 questions
-1
votes
1 answer

MySQL radius search

I am making an application with radius search, here is the example I learned from https://developers.google.com/maps/articles/phpsqlsearch_v3#findnearsql In my case I do SELECT (3959 * acos(cos(radians(-37.814107)) * cos(radians(lat)) *…
-2
votes
1 answer

Limiting the great circle

I need to limit the radius of the great circle problem. The circle will extend until it hits another item. I need it to limit the range of the circle to 5 miles Here is my code function find_closest_ticket(ticket, lat, lng) { // var lat =…
pithhelmet
  • 2,222
  • 6
  • 35
  • 60
1 2 3 4 5 6
7