gpt4 book ai didi

python - 光栅源形状与给定索引不一致 1

转载 作者:行者123 更新时间:2023-12-04 02:43:32 29 4
gpt4 key购买 nike

我需要保存一个 3 波段 geotiff 来归档。我目前正在使用光栅,当我写出 3 波段图像时,我收到错误 Source shape (1, 3445, 4703, 4) is inconsistent with given indexes 1 .

我的最终目标是能够对图像进行一些分析并将其写入文件。

我已经试过了 reshape_as_rasterreshape_as_image .我尝试了其他一些组合以及 .transpose(arr, (0,1,2))

https://rasterio.readthedocs.io/en/stable/topics/image_processing.html#imageorder

with rio.open(r"C:\Users\name\Documents\project\name.tif") as src:
naip_data = src.read()
naip_meta = src.profile

image = reshape_as_raster(naip_data)

with rio.open('C:\\Users\\name\\Documents\\UAV_test_save\\filename.tif', 'w',**naip_meta) as dst:
dst.write(image, 3)

我希望在文件中保存一个 geotiff。相反,我得到:

ValueError rasterio_io.pyx in rasterio._io.DatasetWriterBase.write()

ValueError: Source shape (1, 3445, 4, 4703) is inconsistent with given indexes 1

最佳答案

我有同样的问题。我通过删除“索引”参数来解决它。

所以而不是:

dst.write(image,indexes=3)

用这个:
dst.write(image)

关于python - 光栅源形状与给定索引不一致 1,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58193526/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com