Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PLUM
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Land Use Lab
PLUM
Commits
3a753837
Commit
3a753837
authored
6 years ago
by
Peter Alexander
Browse files
Options
Downloads
Patches
Plain Diff
Tidy up parameters added then not used
parent
6095d077
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/ac/ed/lurg/ModelConfig.java
+1
-3
1 addition, 3 deletions
src/ac/ed/lurg/ModelConfig.java
with
1 addition
and
3 deletions
src/ac/ed/lurg/ModelConfig.java
+
1
−
3
View file @
3a753837
...
...
@@ -187,6 +187,7 @@ public class ModelConfig {
public
static
final
double
CALIB_FACTOR_SRC
=
getDoubleProperty
(
"CALIB_FACTOR_SRC"
,
Double
.
NaN
);
public
static
final
double
INITIAL_PRICE_SHIFT
=
getDoubleProperty
(
"INITIAL_PRICE_SHIFT"
,
1.0
);
public
static
final
double
INITAL_PRICE_WHEAT
=
getDoubleProperty
(
"INITAL_PRICE_WHEAT"
,
0.157
*
ModelConfig
.
INITIAL_PRICE_SHIFT
);
public
static
final
double
INITAL_PRICE_MAIZE
=
getDoubleProperty
(
"INITAL_PRICE_MAIZE"
,
0.152
*
ModelConfig
.
INITIAL_PRICE_SHIFT
);
public
static
final
double
INITAL_PRICE_RICE
=
getDoubleProperty
(
"INITAL_PRICE_RICE"
,
0.182
*
ModelConfig
.
INITIAL_PRICE_SHIFT
);
...
...
@@ -229,7 +230,6 @@ public class ModelConfig {
public
static
final
boolean
IS_CALIBRATION_RUN
=
getBooleanProperty
(
"IS_CALIBRATION_RUN"
,
false
);
public
static
final
String
SERIALIZED_LAND_USE_FILE
=
getProperty
(
"SERIALIZED_LAND_USE_FILE"
,
OUTPUT_DIR
+
File
.
separator
+
"landUseRaster.ser"
);
public
static
final
boolean
MARKET_ADJ_PRICE
=
IS_CALIBRATION_RUN
?
false
:
getBooleanProperty
(
"MARKET_ADJ_PRICE"
,
true
);
public
static
final
double
INITIAL_PRICE_SHIFT
=
getDoubleProperty
(
"INITIAL_PRICE_SHIFT"
,
1.0
);
public
static
final
boolean
CHANGE_YIELD_DATA_YEAR
=
IS_CALIBRATION_RUN
?
false
:
getBooleanProperty
(
"CHANGE_YIELD_DATA_YEAR"
,
true
);
public
static
final
String
CLUSTERED_YIELD_FILE
=
getProperty
(
"CLUSTERED_YIELD_FILE"
,
OUTPUT_DIR
+
File
.
separator
+
"cluster.asc"
);
public
static
final
boolean
GENERATE_NEW_YIELD_CLUSTERS
=
getBooleanProperty
(
"GENERATE_NEW_YIELD_CLUSTERS"
,
IS_CALIBRATION_RUN
);
...
...
@@ -360,6 +360,4 @@ public class ModelConfig {
public
static
final
boolean
FORCE_PROTECTED_AREAS
=
IS_CALIBRATION_RUN
?
false
:
getBooleanProperty
(
"FORCE_PROTECTED_AREAS"
,
false
);
public
static
final
int
FORCE_PROTECTED_AREAS_START_YEAR
=
getIntProperty
(
"FORCE_PROTECTED_AREAS_START_YEAR"
,
2020
);
public
static
final
int
FORCE_PROTECTED_AREAS_END_YEAR
=
getIntProperty
(
"FORCE_PROTECTED_AREAS_END_YEAR"
,
2050
);
public
static
final
String
COUNTRY_FOR_SUBSIDY
=
getProperty
(
"COUNTRY_FOR_SUBSIDY"
,
"United States of America"
);
public
static
final
double
SUBSIDY_RATE
=
getDoubleProperty
(
"SUBSIDY_RATE"
,
0.39
);
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment