greatcircleintersect

1.0.0 • Public • Published

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 point0 = [23, -51];
// var point1 = [0, 74];
// var point2 = [103, -13];
// var point3 = [1, 51];
 
var gci = greatcircleintersect(point0, point1, point2, point3, true);
 
// gci = [ 11.156998734005295, 50.66432074788117 ]

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

Dependencies (0)

    Dev Dependencies (1)

    Package Sidebar

    Install

    npm i greatcircleintersect

    Weekly Downloads

    3

    Version

    1.0.0

    License

    MIT

    Last publish

    Collaborators

    • mclaeysb