Skip to content

Commit

Permalink
Merge pull request opensha#103 from pmpowers-usgs/trt-r-max-102
Browse files Browse the repository at this point in the history
Updated cutoffs
  • Loading branch information
kevinmilner authored Apr 3, 2024
2 parents b52eb0c + e81bfb3 commit 160cc57
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/main/java/org/opensha/sha/util/TectonicRegionType.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public enum TectonicRegionType implements Serializable {


/** Active shallow crust tectonic region. */
ACTIVE_SHALLOW("Active Shallow Crust", 200),
ACTIVE_SHALLOW("Active Shallow Crust", 300),

/** Stable shallow crust tectonic region. */
STABLE_SHALLOW("Stable Shallow Crust", 1000),
Expand All @@ -25,10 +25,10 @@ public enum TectonicRegionType implements Serializable {
SUBDUCTION_INTERFACE("Subduction Interface", 1000),

/** Subduction IntraSlab tectonic region. */
SUBDUCTION_SLAB("Subduction IntraSlab", 1000),
SUBDUCTION_SLAB("Subduction IntraSlab", 300),

/** Volcanic tectonic region. */
VOLCANIC("Volcanic", 200);
VOLCANIC("Volcanic", 300);

private String name;
private double cutoff;
Expand Down

0 comments on commit 160cc57

Please sign in to comment.