tethys-feature-service/node_modules/proj4/lib/common/toPoint.js

13 lines
200 B
JavaScript
Raw Normal View History

2023-10-02 13:04:02 +00:00
export default function (array){
var out = {
x: array[0],
y: array[1]
};
if (array.length>2) {
out.z = array[2];
}
if (array.length>3) {
out.m = array[3];
}
return out;
}