Rasterio源形状与给定索引1不一致

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Rasterio源形状与给定索引1不一致相关的知识,希望对你有一定的参考价值。

我需要保存一个3波段的geotiff文件。我当前正在使用rasterio,当我写出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。相反,我得到:

rasterio._io.DatasetWriterBase.write()中的ValueError rasterio_io.pyx>

ValueError:源形状(1、3445、4、4703)与给定的不一致索引1

我需要保存一个3波段的geotiff文件。我当前正在使用rasterio,当我写出3波段图像时,出现错误源形状(1、3445、4703、4)与给定的...

答案

似乎您正在尝试编写4波段栅格。

以上是关于Rasterio源形状与给定索引1不一致的主要内容,如果未能解决你的问题,请参考以下文章

为啥标签与 pandas、itertools 和 numpy 索引不一致?

如何将echarts图例与曲线显示顺序不一致

UI设计中如果图标大小不一致一般怎么处理?

为啥微信的个人中心页面图标风格不一致

NSString 本地化比较:给定较长字符串的不一致结果

Go 在数组子切片上的内置范围具有不一致的行为