Updated to track a minor file naming change.
This commit is contained in:
parent
a4ae777cf2
commit
a27a7d9367
1 changed files with 2 additions and 2 deletions
|
@ -76,7 +76,7 @@ point_list calc_elevations( const string& root, const point_list& geod_nodes ) {
|
|||
|
||||
// try 3 arcsec dems first
|
||||
string dem_path = root + "/DEM-3/" + base
|
||||
+ "/" + b.gen_index_str() + ".dem";
|
||||
+ "/" + b.gen_index_str();
|
||||
cout << "dem_path = " << dem_path << endl;
|
||||
|
||||
if ( ! array.open(dem_path) ) {
|
||||
|
@ -85,7 +85,7 @@ point_list calc_elevations( const string& root, const point_list& geod_nodes ) {
|
|||
|
||||
// try 30 arcsec dem
|
||||
dem_path = root + "/DEM-30/" + base
|
||||
+ "/" + b.gen_index_str() + ".dem";
|
||||
+ "/" + b.gen_index_str();
|
||||
cout << "dem_path = " << dem_path << endl;
|
||||
if ( ! array.open(dem_path) ) {
|
||||
cout << "ERROR: cannot open 3 arcsec file "
|
||||
|
|
Loading…
Add table
Reference in a new issue