Attempting to read TIF file using the function 'readgeoraster' and get errors

15 次查看(过去 30 天)
[A,R] = readgeoraster("OB_LR.tif");
figure
mapshow(A,R)
I got the following error:
function mapshow expected input number 2, R, to be either a 3-by-2 referencing matrix or a scalar map raster reference object. Instead its type was: map.rasterref.GegraphicCellsReference.
What does this error mean and how do I read the OB_LR.tif file correctly?

采纳的回答

Amey Waghmare
Amey Waghmare 2023-1-16
Hi,
As per my understanding, you are unable to display the TIF file due to the error.
The TIF file ‘OB_LR.tif’ you are trying to plot is referenced using geographical coordinates, instead of projected map coordinates. Because of this, ‘mapshow’ function is causing error as it can display TIF file referenced using projected map coordinates.
In order to resolve the issue, you need to use ‘geoshow’ instead of ‘mapshow’, as geoshow can display TIF file referenced with geographial coordinates.
geoshow(A, R)
You can determine whether a file uses geographical coordinates or projected map coordinates from the readgeoraster command, which returns Spatial Reference ‘R’. If the data is referenced to a geographic coordinate system, then R is a GeographicCellsReference, else if the data is referenced to a projected coordinate system, then R is a MapCellsReference object.
For more information, please refer to the following documentation:
I hope this resolves the issue.

更多回答(0 个)

标签

产品


版本

R2022b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by