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

turf-distance

Package Overview
Dependencies
Maintainers
8
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

turf-distance

turf distance module

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
8
Created
Source

turf-distance

build status

turf distance module

turf.distance(from, to, [units=kilometers])

Takes two Point features and calculates the distance between them in degress, radians, miles, or kilometers. This uses the Haversine formula to account for global curvature.

Parameters

parametertypedescription
fromPointorigin point
toPointdestination point
[units=kilometers]Stringoptional: can be degrees, radians, miles, or kilometers

Example

var point1 = turf.point([-75.343, 39.984]);
var point2 = turf.point([-75.534, 39.123]);
var units = 'miles';

var points = turf.featurecollection([point1, point2]);

//=points

var distance = turf.distance(point1, point2, units);

//=distance

Installation

Requires nodejs.

$ npm install turf-distance

Tests

$ npm test

Keywords

FAQs

Package last updated on 06 Feb 2015

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