Borrar filtros
Borrar filtros

How can i make geotiff file with 2D longitude, 2D latitude and 2D data

4 visualizaciones (últimos 30 días)
yunji song
yunji song el 27 de Dic. de 2021
Editada: yunji song el 27 de Dic. de 2021
longitude, latitude and data are all 3413x2464 double matrix and i want to save this data as geotiff file.
Because i have to read this data by use ENVI program.
i'm sorry i can't give the data sample because it is secret information

Respuestas (1)

KSSV
KSSV el 27 de Dic. de 2021
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);
  4 comentarios
yunji song
yunji song el 27 de Dic. de 2021
i know that i can find min and max but i think it is not appropriate in this case.
isn't it possible when lon (lat) have same grid in each raw(colum) like below example?
ex) lon=[170,170,170,170;171,171,171,171;172,172,172,172;173,173,173,173]
if i use your code, geo information which saved in tiff file is different with raw data.

Iniciar sesión para comentar.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by