proj4js/lib/parseCode.js
2017-01-24 22:37:45 +01:00

38 lines
733 B
JavaScript

import defs from './defs';
import wkt from './wkt';
import projStr from './projString';
function testObj(code){
return typeof code === 'string';
}
function testDef(code){
return code in defs;
}
var codeWords = ['GEOGCS','GEOCCS','PROJCS','LOCAL_CS'];
function testWKT(code){
return codeWords.some(function (word) {
return code.indexOf(word) > -1;
});
}
function testProj(code){
return code[0] === '+';
}
function parse(code){
if (testObj(code)) {
//check to see if this is a WKT string
if (testDef(code)) {
return defs[code];
}
if (testWKT(code)) {
return wkt(code);
}
if (testProj(code)) {
return projStr(code);
}
}else{
return code;
}
}
export default parse;