Package Exports
- utm-utils
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (utm-utils) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
utm-utils
Super Light-Weight Utility Functions for Working with Universal Transverse Mercator
Usage
Check if EPSG Code Refers to UTM
const isUTM = require('utm-utils/src/isUTM');
const result = isUTM(32619);
// true
Get Hemisphere from EPSG Code
const getHemisphere = require('utm-utils/src/getHemisphere');
const hemisphere = getHemisphere('32617');
// N
Get Zone from EPSG Code
const getZone = require('utm-utils/src/getZone');
const zone = getZone('32617');
// 17
Get PROJ String from EPSG Code
const getProjString = require('utm-utils/src/getProjString');
const projString = getProjString('32617');
// +proj=utm +zone=17 +ellps=WGS84 +datum=WGS84 +units=m +no_defs
Support
Email the package author at daniel.j.dufour@gmail.com or post an issue at https://github.com/danieljdufour/utm-utils/issues