publicdoubleterr_alpha_offset=0.1;// alpha offset near alpha ~=1.0
publicdoubleterr_alpha_0offset=0.0;// New - a separate alpha offset nea alpha ~= 0.0
publicdoubleterr_alpha_min_veg=-1;// old version 0.5; // Minimal vegetation alpha. If (alpha-alpha_offset)/(1-2*alpha_offset) < alpha_min_veg, pull down to lpha_offset
publicdoubleterr_alpha_min_veg=0.5;// old version 0.5; // Minimal vegetation alpha. If (alpha-alpha_offset)/(1-2*alpha_offset) < alpha_min_veg, pull down to lpha_offset
publicdoubleterr_alpha_max_terrain=0.75;// increase pull vegetation if below
publicdoubleterr_alpha_pull_pwr=1.0;// raise extra pull to that power
publicdoubleterr_alpha_lpf=2.5;// pull to average of 4 neighbors
publicdoubleterr_alpha_lpf_border=1.0;// pull to average of 4 neighbors for border tiles (to keep stable)
publicbooleanterr_alpha_piece_linear=true;
publicdoubleterr_alpha_scale_avg=1.0;// scale average alpha (around 0.5) when pulling to it
publicdoubleterr_alpha_push=12;// push from alpha==0.5
...
...
@@ -824,6 +826,7 @@ min_str_neib_fpn 0.35
publicdoubleterr_terr_pull_up=0.25;// pull terrain to initial when it is colder
publicdoubleterr_terr_pull_avg=0.1;// Pull terrain to the initial offset by the average offset of all terrain pixels
publicdoubleterr_veget_pull_low_alpha=10;// scale (boost) pull0 for low alpha (mostly terrain)
publicdoubleterr_elev_pull0=1.0;// pull elevation to initial (pre-adjustment) values
publicbooleanterr_elev_alpha_en=false;// Enable loss for low vegetation with high opacity
publicdoubleterr_elev_alpha=1.0;// multiply alpha by under-low elevation for loss
...
...
@@ -2154,8 +2157,11 @@ min_str_neib_fpn 0.35
gd.addNumericField("Alpha offset @1.0",terr_alpha_offset,5,7,"","Start alpha losses below 1.0 by this value.");
gd.addNumericField("Alpha offset @0.0",terr_alpha_0offset,5,7,"","Start alpha losses above 0.0 by this value.");
gd.addNumericField("Minimal vegetation alpha",terr_alpha_min_veg,5,7,"","Minimal vegetation alpha. If (alpha-alpha_offset)/(1-2*alpha_offset) < alpha_min_veg, pull down to lpha_offset.");
gd.addNumericField("Maximal terrain alpha",terr_alpha_max_terrain,5,7,"","Increase pull vegetation if below.");
gd.addNumericField("Extra pull power",terr_alpha_pull_pwr,5,7,"","Raise extra pull (below maximal terrain alpha) to that power.");
gd.addNumericField("Alpha diffusion",terr_alpha_lpf,5,7,"","Alpha diffusion to 4 ortho neighbors.");
gd.addNumericField("Alpha diffusion border",terr_alpha_lpf_border,5,7,"","Alpha diffusion to ortho neighbors on the border (for stability with low alpha diffusion).");
gd.addNumericField("Scale alpha",terr_alpha_scale_avg,5,7,"","Scale target (average of neighbors) alpha before pulling to it (not used now).");
gd.addNumericField("Push alpha",terr_alpha_push,5,7,"","Quadratic loss for middle alpha (push to 0.0 or 1.0.");
...
...
@@ -2171,8 +2177,9 @@ min_str_neib_fpn 0.35
gd.addNumericField("Terrain pull up",terr_terr_pull_up,5,7,"","Terrain pixels pull to initial (pre-adjustment) values when it is colder than initial (<0 - sqme as above).");
gd.addNumericField("Terrain pull to average",terr_terr_pull_avg,5,7,"","Pull terrain to the initial offset by the average offset of all terrain pixels.");
@@ -4427,8 +4502,10 @@ public class VegetationLMA {
getProperty(imp_pars,"ALPHA_OFFSET",alpha_offset),// final double alpha_offset, // quadratic loss when alpha > 1 - alpha_offset
getProperty(imp_pars,"ALPHA_0OFFSET",alpha_0offset),// final double alpha_0offset, // quadratic loss when alpha < alpha0_offset
getProperty(imp_pars,"ALPHA_MIN_VEG",alpha_min_veg),// final double alpha_min_veg, // 0.5; // if (alpha-alpha_offset)/(1-2*alpha_offset) < alpha_min_veg, pull down to lpha_offset
getProperty(imp_pars,"ALPHA_LPF",alpha_lpf),// final double alpha_lpf, // pull to average of 4 neighbors
getProperty(imp_pars,"ALPHA_MAX_TERRAIN",alpha_max_terrain),// final double alpha_max_terrain, // 0.75; // () increase pull vegetation if below
getProperty(imp_pars,"ALPHA_PULL_PWR",alpha_pull_pwr),// final double alpha_pull_pwr, // 1.0; // () raise extra pull to that power
getProperty(imp_pars,"ALPHA_LPF",alpha_lpf),// final double alpha_lpf_border, // pull to average of 4 neighbors for border tiles (to keep stable)
getProperty(imp_pars,"ALPHA_LPF_BORDER",alpha_lpf_border),// final double alpha_lpf, // pull to average of 4 neighbors
getProperty(imp_pars,"ALPHA_SCALE_AVG",alpha_scale_avg),// final double alpha_scale_avg, // = 1.2; // scale average alpha (around 0.5) when pulling to it
getProperty(imp_pars,"ALPHA_PUSH",alpha_push),// final double alpha_push, // 5.0; // push from alpha==0.5
...
...
@@ -4444,6 +4521,7 @@ public class VegetationLMA {
getProperty(imp_pars,"TERR_PULL_UP",terr_pull_up),// final double terr_pull_up, // Terrain pixels pull to initial (pre-adjustment) values when it is colder than initial.
getProperty(imp_pars,"TERR_PULL_AVG",terr_pull_avg),// final double terr_pull_avg, // pull terrain to the initial offset by the average offset of all terrain pixels
getProperty(imp_pars,"VEGET_PULL0",veget_pull0),// final double veget_pull0, // pull vegetation to initial (pre-adjustment) values
getProperty(imp_pars,"VEGET_PULL_LOW_ALPHA",veget_pull_low_alpha),// final double veget_pull_low_alpha, // 10; // ()scale pull0 for low alpha (mostly terrain)
getProperty(imp_pars,"ELEVATION_PULL0",elevation_pull0),// final double elev_pull0, // pull elevation to initial (pre-adjustment) values
getProperty(imp_pars,"ELEV_ALPHA_EN",elev_alpha_en),// final boolean elev_alpha_en, // false; // Enable loss for low vegetation with high opacity
getProperty(imp_pars,"ELEV_ALPHA",elev_alpha),// final double elev_alpha, // 1.0; // multiply alpha by under-low elevation for loss
...
...
@@ -4903,14 +4981,42 @@ public class VegetationLMA {
@@ -1516,7 +1516,11 @@ public class VegetationModel {
doublealpha_0offset=clt_parameters.imp.terr_alpha_0offset;// 0.0; // if >0, start losses above 0.0
doublealpha_min_veg=clt_parameters.imp.terr_alpha_min_veg;// 0.5 // Minimal vegetation alpha. If (alpha-alpha_offset)/(1-2*alpha_offset) < alpha_min_veg, pull down to lpha_offset
doublealpha_max_terrain=clt_parameters.imp.terr_alpha_max_terrain;// 0.75; // () increase pull vegetation if below
doublealpha_pull_pwr=clt_parameters.imp.terr_alpha_pull_pwr;// 1.0; // () raise extra pull to that power
doublealpha_scale_avg=clt_parameters.imp.terr_alpha_scale_avg;// 1.0; // 1.1; // 0.9; // 2.0; // 1.5; // scale average alpha (around 0.5) when pulling to it
doublealpha_push=clt_parameters.imp.terr_alpha_push;// 12; // 10.0; // 15.0; // push from alpha==0.5
...
...
@@ -1533,6 +1537,9 @@ public class VegetationModel {
doubleterr_pull_up=clt_parameters.imp.terr_terr_pull_up;// 0.2; // Terrain pixels pull to initial (pre-adjustment) values when it is colder than initial.
doubleterr_pull_avg=clt_parameters.imp.terr_terr_pull_avg;// 0.1; // Pull terrain to the initial offset by the average offset of all terrain pixels
doubleveget_pull0=clt_parameters.imp.terr_veget_pull0;// 0.05; //0.1; // 0.03; ////// 0.05; ///// 0.1; //// 0.01; /// 0.1; // pull vegetation to zero (makes sense with UM
doubleveget_pull_low_alpha=clt_parameters.imp.terr_veget_pull_low_alpha;//10; // scale pull0 for low alpha (mostly terrain)