From 99da0c21b04f988a9933c39c98e04ed85ca6cd51 Mon Sep 17 00:00:00 2001 From: curt Date: Mon, 19 Dec 2005 15:53:21 +0000 Subject: [PATCH] Change SRTM directory names to reflect SRTM v2.0 --- src/Airports/GenAirports/main.cxx | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/Airports/GenAirports/main.cxx b/src/Airports/GenAirports/main.cxx index 24e7e0a0..3ce9b4ea 100644 --- a/src/Airports/GenAirports/main.cxx +++ b/src/Airports/GenAirports/main.cxx @@ -99,11 +99,12 @@ static void help( int argc, char **argv ) { cout << "It is necessary to generate the elevation data for the area of interest PRIOR TO GENERATING THE AIRPORTS. "; cout << "Failure to do this will result in airports being generated with an elevation of zero. "; cout << "The following subdirectories of the work-dir will be searched for elevation files:\n\n"; - cout << "SRTM-United_States-1\n"; - cout << "SRTM-North_America-3\n"; - cout << "SRTM-South_America-3\n"; - cout << "SRTM-Eurasia-3\n"; - cout << "SRTM-Africa-3\n"; + cout << "SRTM2-Africa-3\n"; + cout << "SRTM2-Australia-3\n"; + cout << "SRTM2-Eurasia-3\n"; + cout << "SRTM2-Islands-3\n"; + cout << "SRTM2-North_America-3\n"; + cout << "SRTM2-South_America-3\n"; cout << "DEM-USGS-3\n"; cout << "SRTM-30"; cout << "\n\n"; @@ -180,11 +181,12 @@ int main( int argc, char **argv ) { } // Please update the help near the top of this file if you update this list. - elev_src.push_back( "SRTM-United_States-1" ); - elev_src.push_back( "SRTM-North_America-3" ); - elev_src.push_back( "SRTM-South_America-3" ); - elev_src.push_back( "SRTM-Eurasia-3" ); - elev_src.push_back( "SRTM-Africa-3" ); + elev_src.push_back( "SRTM2-Africa-3" ); + elev_src.push_back( "SRTM2-Australia-3" ); + elev_src.push_back( "SRTM2-Eurasia-3" ); + elev_src.push_back( "SRTM2-Islands-3" ); + elev_src.push_back( "SRTM2-North_America-3" ); + elev_src.push_back( "SRTM2-South_America-3" ); elev_src.push_back( "DEM-USGS-3" ); elev_src.push_back( "SRTM-30" );