0

我尝试使用rasteriogeopandas裁剪 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])])
4

0 回答 0