Skip to content
Snippets Groups Projects
Commit f1aff8dc authored by R0slyn's avatar R0slyn
Browse files

add proportion of protected land and setters and getters

parent 70089755
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,7 @@ public class LandCoverItem implements RasterItem {
private Map<LandCoverType, Double> landcover = new HashMap<LandCoverType, Double>();
private double totalArea;
private double proportionProtectedArea;
/** Area in Mha */
public Double getLandCoverArea(LandCoverType landType) {
......@@ -36,6 +37,15 @@ public class LandCoverItem implements RasterItem {
public void setLandCoverFract(LandCoverType landType, double d) {
landcover.put(landType, d);
}
public void setProtectedArea(double proportionProtectedArea){
this.proportionProtectedArea=proportionProtectedArea;
}
public double getProtectedArea(){
return proportionProtectedArea;
}
/*public double getTotal() {
double total = 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment