Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 496 Bytes

README.md

File metadata and controls

22 lines (14 loc) · 496 Bytes

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 }