我尝试使用rasterio
和Geopandas df
裁剪geotiff图像,但是如果我使用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])])