Put default max_slope value for airports back to 2%. We have a command line option to increase this, if necessary
This commit is contained in:
parent
f937ec5745
commit
abece63b5d
2 changed files with 2 additions and 2 deletions
|
@ -60,7 +60,7 @@ using std::endl;
|
|||
|
||||
|
||||
int nudge = 10;
|
||||
double slope_max = 0.2;
|
||||
double slope_max = 0.02;
|
||||
|
||||
static int is_in_range( string_list & runway_list, float min_lat, float max_lat, float min_lon, float max_lon );
|
||||
|
||||
|
|
|
@ -118,7 +118,7 @@ static void help( int argc, char **argv, const string_list& elev_src ) {
|
|||
|
||||
// TODO: where do these belong
|
||||
int nudge = 10;
|
||||
double slope_max = 0.2;
|
||||
double slope_max = 0.02;
|
||||
double gSnap = 0.00000001; // approx 1 mm
|
||||
|
||||
// For creating a buffered stream to write to the socket
|
||||
|
|
Loading…
Add table
Reference in a new issue