// TODO: the fullResourceMask is available directly in WarpedMap class!// This also means this function can be removed from stdlib.export function getFullResourceMask(imageWidth, imageHeight) {
return [
[0, 0],
[imageWidth, 0],
[imageWidth, imageHeight],
[0, imageHeight]
];
}