pixel-utils
Version:
Utility Functions for Pixels
10 lines (9 loc) • 361 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = convert_multiband_all;
function convert_multiband_all(old_no_data_value, noDataPixel, scalefn1, scalefn2, scalefn3, pixel) {
if (pixel.includes(old_no_data_value)) return noDataPixel;
return [scalefn1(pixel[0]), scalefn2(pixel[1]), scalefn3(pixel[2]), 255];
}