UNPKG

swiss-projection

Version:

Convert from LV03(EPSG:21781) and LV95(EPSG:2056) to WGS84(EPSG:4326)

15 lines (13 loc) 358 B
import convert from './convert' import { toLV03, toLV95 } from './toCH' import { fromLV03, fromLV95 } from './fromCH' export const LV03toWGS = convert(fromLV03) export const LV95toWGS = convert(fromLV95) export const WGStoLV03 = convert(toLV03) export const WGStoLV95 = convert(toLV95) export default { LV03toWGS, LV95toWGS, WGStoLV03, WGStoLV95, }