how to extract the lat/long information about the given dted files?

6 visualizaciones (últimos 30 días)
Elite cada
Elite cada el 23 de Abr. de 2013
Editada: per isakson el 12 de Feb. de 2015
how to extract the lat/long information about the given dted files? so that when i use those lat/long info it shoud point out the respected dted?
example given in matlab
latlim = [ 41.15 42.22]; lonlim = [-70.94 -69.68];
dteds(latlim,lonlim,1)
ans =
'\DTED\W071\N41.dt1'
'\DTED\W070\N41.dt1'
'\DTED\W071\N42.dt1'
'\DTED\W070\N42.dt1'
and is this ans is stored in default?
  1 comentario
per isakson
per isakson el 12 de Feb. de 2015
Editada: per isakson el 12 de Feb. de 2015
"and is this ans is stored in default?" &nbsp ans is a special variable name that is given by default when the user doesn't provide an output argument. ans is typically overwritten all the time and should not be used in code.
Try
a_better_name = dteds(latlim,lonlim,1);

Iniciar sesión para comentar.

Respuestas (1)

daniel
daniel el 12 de Feb. de 2015
I am not sure if I am understanding your question. Are you attempting to obtain Elevation data for certain lat/long values within a DTED1 cell?
I found Matlab's DTED/DTEDs functions to be quite useless...
I was able to modify this function to give me correct DTED elevation values based on lat/long input... Try it out http://www.mathworks.com/matlabcentral/fileexchange/25897-read-dted-elevation-data

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by