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])])