UNPKG

637 BJavaScriptView Raw
1const getCodeFromProjString = require("./getCodeFromProjString.js");
2const getCodeFromEsriWKT = require("./getCodeFromEsriWKT.js");
3const isUTM = require("./isUTM.js");
4const getHemisphere = require("./getHemisphere.js");
5const getProjString = require("./getProjString.js");
6const getZone = require("./getZone.js");
7
8const utm_utils = { getCodeFromEsriWKT, getCodeFromProjString, getHemisphere, getProjString, getZone, isUTM };
9
10if (typeof define === "function" && define.amd) {
11 define(function () {
12 return utm_utils;
13 });
14}
15
16if (typeof module === "object") {
17 module.exports = utm_utils;
18 module.exports.default = utm_utils;
19}