greatcircleintersect
A very simple script to compute the intersection point of two great circles specified using two points. The intersection point is computed either in the Cartesian plane of its coordinates or on a Sphere.
Usage
Get Node.js, then
npm install greatcircleintersect
and use it like so:
var greatcircleintersect = require('greatcircleintersect');
var gci = greatcircleintersect(point0, point1, point2, point3, true);
You can set a boolean variable to specify the intersection should be computed in the sphere (default) or in the Cartesian space of the coordinates.
In the first case, the inputs are expected in WGS84 coordinates, in degrees.
Example
Note that this image uses arc.js to display the segments between the input points. Sometimes these arcs will have an intersection, sometimes not. The great circles will, however, always have two intersections. This packages returns only one of them: the one that is closest to the intersection as computed in Cartesian space.
Credits
The geodesic variant is based on the very useful website of Movable Type Scripts