AoA.java [src/java/m/rhem/model] Revision: 4931d42d0a9cf9d67b0400edec188ae7aa90ba3b  Date: Tue Oct 25 13:19:47 MDT 2022
/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package m.rhem.model;

/**
 *
 * @author rumpal
 */
public class AoA {

  int aoaId;
  int rhemSiteId;
  String scenarioName;

  String scenarioDescription;
  String soilTexture;
  String slopeShape;
  double slopeSteepness;
  double moisturecontent;
  double bunchGgrassCanopyCover;
  double forbsCanopyCover;
  double shrubsCanopyCover;
  double sodGrassCanopyCover;
  double basalCover;
  double rockCover;
  double litterCover;
  double cryptogamsCover;
  double sar;


  public AoA(int aoaId, int rhemSiteId, String scenarioName,
      String scenarioDescription, String soilTexture,
      String slopeShape, double slopeSteepness,
      double bunchGgrassCanopyCover, double forbsCanopyCover,
      double shrubsCanopyCover, double sodGrassCanopyCover, double basalCover,
      double rockCover, double litterCover, double cryptogamsCover, double moisturecontent,
      double sar) {
    this.aoaId = aoaId;
    this.rhemSiteId = rhemSiteId;
    this.scenarioName = scenarioName;
    this.scenarioDescription = scenarioDescription;
    this.soilTexture = soilTexture;
    this.slopeShape = slopeShape;
    this.slopeSteepness = slopeSteepness / 100.0;
    this.bunchGgrassCanopyCover = bunchGgrassCanopyCover / 100.0;
    this.forbsCanopyCover = forbsCanopyCover / 100.0;
    this.shrubsCanopyCover = shrubsCanopyCover / 100.0;
    this.sodGrassCanopyCover = sodGrassCanopyCover / 100.0;
    this.basalCover = basalCover / 100.0;
    this.rockCover = rockCover / 100.0;
    this.litterCover = litterCover / 100.0;
    this.cryptogamsCover = cryptogamsCover / 100.0;
    this.moisturecontent = moisturecontent / 100.0;
    this.sar = sar;
  }


  public int getAoaId() {
    return aoaId;
  }


  public int getRhemSiteId() {
    return rhemSiteId;
  }


  public String getScenarioName() {
    return scenarioName;
  }

}