This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| cp "${INPUT}.tif" "${INPUT}-removed-nodata.tif" | |
| INPUT="${INPUT}-removed-nodata.tif" | |
| OUTPUT="${OUTPUT}.tif" | |
| # Use gdal_edit.py to unset nodata metadata so we can use them in gdal_calc.py | |
| gdal_edit.py -unsetnodata $INPUT |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (use-modules (gnu) | |
| (gnu system nss) | |
| (guix utils) | |
| (gnu packages vim) | |
| (nongnu packages linux) | |
| (nongnu system linux-initrd)) | |
| (use-service-modules desktop sddm xorg) | |
| (use-package-modules certs gnome) | |
| (operating-system |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| let wasm; | |
| let cachedUint8ArrayMemory0 = null; | |
| function getUint8ArrayMemory0() { | |
| if (cachedUint8ArrayMemory0 === null || cachedUint8ArrayMemory0.byteLength === 0) { | |
| cachedUint8ArrayMemory0 = new Uint8Array(wasm.memory.buffer); | |
| } | |
| return cachedUint8ArrayMemory0; | |
| } |
OlderNewer