我尝试使用rasterio
geopandas裁剪 geotiff 图像,df
但如果我使用会出现错误crop=True
src = 'myFile.tiif'
clipped_array, clipped_transform = rasterio.mask.mask(src, [mapping(df['geometry'][0])], crop=True)
ValueError: width and height must be > 0
如果我不使用该选项,它会起作用crop=True
clipped_array, clipped_transform = rasterio.mask.mask(src, [mapping(df['geometry'][0])])