Clear Filters
Clear Filters

How can I export a matrix as a geotiff file?

45 views (last 30 days)
I want load this matrix to ArcMap
I did several approach. I tried to convert .mat into ASCII (txt format) but it's not appear, maybe I did something wrong when I did the conversion.
Then I tried to save the file via a tool bar across the top of the figure, click on file, save as.
The result doesn't have correct coordinate system when I open on ArcMap.
Thank you for your help.
Intan
  2 Comments
Walter Roberson
Walter Roberson on 31 Jan 2019
Is there a reason you have not used geotiffwrite() ?
Intan Antasari
Intan Antasari on 31 Jan 2019
Edited: Intan Antasari on 31 Jan 2019
I've tried beforehand but I got an error because I choose wrong example. I tried write an image referenced to geographic coordinate.I got some approach from this link https://nl.mathworks.com/help/map/exporting-images-and-raster-grids-to-geotiff.html
Which one should I choose for converting .mat data to projected coordinate system If I already have reference image beforehand?

Sign in to comment.

Accepted Answer

KSSV
KSSV on 1 Feb 2019
Edited: KSSV on 1 Feb 2019
Let A be your matrix and (xmin,xmax) be your xlimits and (ymin,ymax) be your y limits.
% Get geo referenced
R = georasterref('RasterSize',size(A),'LatitudeLimits',[ymin,ymax],'LongitudeLimits',[xmin,xmax]);
% write to tiff file
tiffile = 'test.tif' ;
geotiffwrite(tiffile,A,R)
%% Read geotiff file
[A, R] = geotiffread(tiffile);
  5 Comments
Intan Antasari
Intan Antasari on 1 Feb 2019
Edited: Intan Antasari on 1 Feb 2019
Flipping data give the right result than transpose. The figure is result from trasnpose data.
Thank you
Intan

Sign in to comment.

More Answers (0)

Products


Release

R2018b

Community Treasure Hunt

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

Start Hunting!