pktools
2.6.7
Processing Kernel for geospatial data
|
With a single mask you can provide as many triples (–operator, –msknodata, –nodata) as you wish. All operators work simultaneously on that mask. Caution: the first operator that tests true will be selected. This is explained in the next example:
Warning: second operator will never test true as first will supersede!
OK: values above 10 will be 10, values between 0 and 10 will be 1
With multiple masks, you can use one triple (–operator, –msknodata, –nodata) for each corresponding mask (following the same order of input). If the number of triples is not equal to the number of masks, then only the first triple is used for all masks simultaneously
If mask1.tif is above 250, the output will be 1. If mask2 is above 100, the output will be 2. If both operators test true, the first will supersede (output will be 1)
If either mask1.tif or mask2.tif is above 250, the output will be 1
copy pixel values from input.tif to output.tif, applying mask.tif, setting all values to 255 where mask is 0.
copy values from input.tif to output.tif, but set all values to 255 if mask is not 1
Application of two masks. Copy pixel values from input.tif to output.tif, setting all values to 255 where either mask is 0.
copy pixel values from input.tif to output.tif, applying single masks, setting all values to 255 where mask is either 0 or 1.