How can I write a GeoTiff file with corresponding coordinates?
33 views (last 30 days)
Show older comments
Yoni Verhaegen -WE-1718-
on 2 Aug 2019
Answered: Ehsan Jalilvand
on 24 Oct 2019
I have the following:
- a latitude array 'lat' (1x1128 single)
- a longitude array 'lon' (1x968)
- a value matrix 'value' (1128x968 double)
How can I write this into a GeoTiff file so that values have the corresponding coordinates of lat and lon, i.e. a lat,lon,value grid?
Thanks
0 Comments
Accepted Answer
Ehsan Jalilvand
on 24 Oct 2019
First use the following lines to create the referencing matrix (R):
% load the value matrix and lat and lon arrays
value = Value_matrix;
lat = lat_array;
lon = lon_array;
% Create the referencing matrix (R)
R = georasterref('RasterSize',size(value), ...
'LatitudeLimits',[min(lat) max(lat)],'LongitudeLimits',[min(lon) max(lon)]);
then choose a name for your file and Write your GeoTIFF file:
filename = datafile('value.tif');
geotiffwrite(filename,value,R)
0 Comments
More Answers (1)
Sai Sri Pathuri
on 6 Aug 2019
You may use geotiffwrite function to write the data into GeoTIFF file. To have a grid of latitude, longitude and value data, first combine the matrices into a single matrix with first element as 0, latitudes in first row, longitudes in first column, remaining rows and columns are occupied by value matrix.
grid_matrix=[0,lat];
grid_matrix(2:969,:)=[lon',value']; %Take transpose of lon and value matrices
Then write into GeoTIFF file using geotiffwrite function
R=georasterref();
R.RasterSize=size(grid_matrix);
geotiffwrite('grid.tif',grid_matrix,R);
Refer the following links for documentation
0 Comments
See Also
Categories
Find more on Standard File Formats in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!