mirror of
https://github.com/proj4js/proj4js.git
synced 2026-01-18 16:13:22 +00:00
13 lines
203 B
JavaScript
13 lines
203 B
JavaScript
module.exports = 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;
|
|
}; |