UNPKG

atriusmaps-node-sdk

Version:

This project provides an API to Atrius Personal Wayfinder maps within a Node environment. See the README.md for more information

7 lines (4 loc) 190 B
'use strict'; const yardsPerMeter = 1.0936132983377; // 1 meter ≈ 1.0936 yards const metersToYards = meters => Math.round(meters * yardsPerMeter); exports.metersToYards = metersToYards;