Skip to content

Commit

Permalink
Minor corrections to model, updated POM
Browse files Browse the repository at this point in the history
  • Loading branch information
rjzupkoii committed Oct 15, 2018
1 parent 87f6371 commit 4cd3c27
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>ForestSim</groupId>
<artifactId>ForestSim</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>1.0</version>
<build>
<sourceDirectory>src</sourceDirectory>

Expand All @@ -25,7 +25,7 @@
</descriptorRefs>
<archive>
<manifest>
<mainClass>edu.mtu.wup.launch.ModelNoUi</mainClass>
<mainClass>edu.mtu.examples.houghton.ModelWithUI</mainClass>
</manifest>
</archive>
</configuration>
Expand Down
4 changes: 2 additions & 2 deletions src/edu/mtu/examples/houghton/model/HoughtonParameters.java
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
public class HoughtonParameters extends ParameterBase {
// Path to default GIS files used in the simulation
public static final String defaultCoverFile = "data/nlcd/houghtonlandcover.asc";
public static final String defaultParcelFile = "file:data/parcels/WUPParcels.shp";
public static final String defaultParcelFile = "file:data/parcels/houghton_parcels.shp";

/**
* Land Tenure phase in rate for the model.
Expand All @@ -34,7 +34,7 @@ public class HoughtonParameters extends ParameterBase {

private Pair<Double, Double> economicNvpDiscountRate = Pair.with(0.0, 0.0);
private Pair<Double, Double> nipfoWth = Pair.with(0.0, 0.0);
private String outputDirectory = null;
private String outputDirectory = "out";
private VipRegime vip;

/**
Expand Down

0 comments on commit 4cd3c27

Please sign in to comment.