dask-rasterio icon indicating copy to clipboard operation
dask-rasterio copied to clipboard

Does dask-rasterio support masked array?

Open Becheler opened this issue 2 years ago • 0 comments

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!

Becheler avatar Mar 28 '22 16:03 Becheler