UNPKG

get-epsg-code

Version:

Gets EPSG Code for Various Inputs (incl. OGC WKT, ESRI WKT, GML, Mapfile, PROJ String, Proj4js String, XML)

9 lines (6 loc) 247 B
const normalize_wkt = require("./wkt.js"); function normalize_esriwkt(esriwkt, { debug = false } = { debug: false }) { return normalize_wkt(esriwkt, { debug }); } module.exports = normalize_esriwkt; module.exports.default = normalize_esriwkt;