JSPM

  • Created
  • Published
  • Downloads 1045209
  • Score
    100M100P100Q325054F
  • License MIT

turf rhumb-distance module

Package Exports

  • @turf/rhumb-distance

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@turf/rhumb-distance) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

@turf/rhumb-distance

rhumbDistance

Calculates the distance along a rhumb line between two points in degrees, radians, miles, or kilometers.

Parameters

Examples

var from = turf.point([-75.343, 39.984]);
var to = turf.point([-75.534, 39.123]);

var distance = turf.rhumbDistance(from, to, "miles");

//addToMap
var addToMap = [from, to];
from.properties.distance = distance;
to.properties.distance = distance;

Returns number distance between the two points


This module is part of the Turfjs project, an open source module collection dedicated to geographic algorithms. It is maintained in the Turfjs/turf repository, where you can create PRs and issues.

Installation

Install this module individually:

$ npm install @turf/rhumb-distance

Or install the Turf module that includes it as a function:

$ npm install @turf/turf