Files
turftracker/frontend/node_modules/@turf/rhumb-distance/dist/js/index.d.ts
2026-04-09 13:19:47 -05:00

28 lines
924 B
TypeScript
Executable File

import { Coord, Units } from "@turf/helpers";
/**
* Calculates the distance along a rhumb line between two {@link Point|points} in degrees, radians,
* miles, or kilometers.
*
* @name rhumbDistance
* @param {Coord} from origin point
* @param {Coord} to destination point
* @param {Object} [options] Optional parameters
* @param {string} [options.units="kilometers"] can be degrees, radians, miles, or kilometers
* @returns {number} distance between the two points
* @example
* var from = turf.point([-75.343, 39.984]);
* var to = turf.point([-75.534, 39.123]);
* var options = {units: 'miles'};
*
* var distance = turf.rhumbDistance(from, to, options);
*
* //addToMap
* var addToMap = [from, to];
* from.properties.distance = distance;
* to.properties.distance = distance;
*/
declare function rhumbDistance(from: Coord, to: Coord, options?: {
units?: Units;
}): number;
export default rhumbDistance;