dask-rasterio
dask-rasterio copied to clipboard
Does dask-rasterio support masked array?
I'm working with dask masked array, and was wondering what would be the translation of these lines?
import rasterio
with rasterio.open(inputFile) as source:
# this is a 3D numpy array, with dimensions [band, row, col]
src_array = source.read(masked=True)
Thank you for your cool lib!