Read/write georeferenced image
37 ビュー (過去 30 日間)
古いコメントを表示
Hi, here I am wondering why this simple operation of reading a georeferenced .tif image and writing some results in the same georeferenced framework is so difficult. Here is my example:
[A,R] = readgeoraster("input_image.tif");
O = f(A) %any operation you like
geotiffwrite("output_image.tif",O,R);
This gives the error:
Error using geotiffwrite
The input, R, is a map.rasterref.MapCellsReference object indicating that you are working in a projected coordinate system. If so, then specify a projected coordinate system by setting the appropriate values for the 'CoordRefSysCode' or 'GeoKeyDirectoryTag' optional parameters.
But the input image includes the Coordinate Reference System Code (which is EPSG:32632), and the geotiffinfo function confirms that, as I have among other values: PCS: WGS 84 / UTM Zone 32N, which is the same as EPSG:32632.
So, do we have two Matlab functions incompatible each other? How am I supposed to automatically save the result without manually input 'CoordRefSysCode',32632 to the geotiffwrite function?
Thanks
0 件のコメント
採用された回答
Kevin Holly
2022 年 9 月 28 日
Can you try this below?
[A,R] = readgeoraster('input_image.tif');
O = A*2; %any operation you like
info = geotiffinfo('input_image.tif');
key = info.GeoTIFFTags.GeoKeyDirectoryTag;
geotiffwrite("output_image.tif",O,R,'GeoKeyDirectoryTag',key);
その他の回答 (1 件)
Yan Tong
2023 年 8 月 16 日
You can try this!
[A,R] = readgeoraster(infilename);
info = geotiffinfo('input_image.tif');
geoTags = info.GeoTIFFTags.GeoKeyDirectoryTag;
tiffTags = struct('TileLength',1024,'TileWidth',1024);
geotiffwrite(outfilename,your_outputtiff,R,'TiffType','bigtiff', ...
'GeoKeyDirectoryTag',geoTags, ...
'TiffTags',tiffTags)
0 件のコメント
参考
カテゴリ
Help Center および File Exchange で Import, Export, and Conversion についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!