From e81bfb34cfca895e32337fa1929bb618ba6cc5a6 Mon Sep 17 00:00:00 2001 From: Peter Powers Date: Mon, 18 Mar 2024 13:11:04 -0600 Subject: [PATCH] updated cutoffs --- src/main/java/org/opensha/sha/util/TectonicRegionType.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/opensha/sha/util/TectonicRegionType.java b/src/main/java/org/opensha/sha/util/TectonicRegionType.java index 267732268..e8e771cdf 100644 --- a/src/main/java/org/opensha/sha/util/TectonicRegionType.java +++ b/src/main/java/org/opensha/sha/util/TectonicRegionType.java @@ -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), @@ -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;