Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

greatcircleintersect

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

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.

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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

Keywords

FAQs

Package last updated on 18 Jun 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc