ApplicationResources.java [src/java/m/rhem] Revision:   Date:
/*
 * To change this template, choose Tools | Templates
 * and open the template in the editor.
 */
package m.rhem;

import csip.Config;
import csip.annotations.Resource;
import static csip.annotations.ResourceType.EXECUTABLE;
import static m.rhem.ApplicationResources.*;

/**
 *
 * @author od
 */
@Resource(type = EXECUTABLE, file = "/bin/lin-amd64/rhem_v4.exe", id = RHEM4_EXE)
@Resource(type = EXECUTABLE, file = "/bin/lin-amd64/rhem_cligen_full_output_19apr2020.exe", id = RHEM4_INTL_EXE)
@Resource(type = EXECUTABLE, file = "/bin/${csip.arch}/rhem_ra.exe", id = RHEM_RA_EXE)
public interface ApplicationResources {

  int DEFAULT_MOISTURE_CONTENT = 25;
  double DEFAULT_SLOPE_LENGTH_METER = 50.0;
  double DEFAULT_MINIMUM_SLOPE_STEEPNESS = 0.01;

  String soils_db = Config.getString("soils.gis.database.source");
  String CLIGEN_DB = Config.getString("rhem.cligen.db");
  String cligenUrl = Config.getString("rhem.cligenprism.url");
  // http://csip.engr.colostate.edu:8097/csip-climate/m/cligen_prism/2.0

  String RHEM4_EXE = "rhem4.exe";
  String RHEM4_INTL_EXE = "rhem4_intl.exe";
  String RHEM_RA_EXE = "rhem_ra.exe";

}