1.0.0 • Published 7 years ago

jtsk2wgs84 v1.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

JTSK/WSG84 coordinates converter

Wrapper around convertion methods between S-JTSK (Krovak) and WGS84 (GPS) coordinate systems. Thanks to Tomáš Pecina and Martin Hinner.

Example

import {jtsk_to_wgs84, wgs84_to_jtsk} from 'jtsk2wgs84'

const prague = {lat: 50.08804, lng: 14.42076}

const {x, y} = wgs84_to_jtsk(prague.lat, prague.lng)
const {lat, lng} = jtsk_to_wgs84(x, y)