I am trying to use rasterio package in python to read in a raster file.
The raster file is from USDA - CDL layer: https://www.nass.usda.gov/Research_and_Science/Cropland/Release/index.php
I got a memory error when I tried read in the band:
---------------------------------------------------------------------------
MemoryError Traceback (most recent call last)
<ipython-input-13-4c562498861d> in <module>
----> 1 cdl_df = cdl.read(1)
rasterio/_io.pyx in rasterio._io.DatasetReaderBase.read()
MemoryError:
Not sure what to do.
Thx in advance!