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