dufour-peyton-intersection
Version:
Reference Implementation of the Dufour-Peyton Intersection Algorithm. Calculates the Intersections of Arbitrary Polygons with a Geospatial Raster.
13 lines (11 loc) • 369 B
JavaScript
;
// This function takes in an array with an even number of elements and
// returns an array that couples every two consecutive elements;
module.exports = function couple(array) {
const couples = [];
const lengthOfArray = array.length;
for (let i = 0; i < lengthOfArray; i += 2) {
couples.push([array[i], array[i + 1]]);
}
return couples;
};