how to extract the lat/long information about the given dted files?
3 ビュー (過去 30 日間)
古いコメントを表示
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 件のコメント
per isakson
2015 年 2 月 12 日
編集済み: per isakson
2015 年 2 月 12 日
"and is this ans is stored in default?"   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);
回答 (1 件)
daniel
2015 年 2 月 12 日
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
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!