itm-wgs84
v1.0.1
Published
Convert easily between ITM (Israel Transverse Mercator) coordinates to WGS84 world geodetic system
Downloads
12
Readme
ITM to WGS84
Convert easily between ITM (Israel Transverse Mercator) coordinates to WGS84 (World geodetic system) and vice versa.
Installation
npm install itm-wgs84
Usage
const { ITMtoWGS84, WGS84toITM } = require('itm-wgs84');
ITMtoWGS84 (x, y);
// return: { lat: 26.0623100, long: 33.0120379 }
WGS84toITM (lat, long);
// return: { x: 31.7777692, y: 35.2350114 }