From 807540824ac70745bbff42c83b5e97c85d88ba49 Mon Sep 17 00:00:00 2001 From: Michele Simionato Date: Fri, 14 Feb 2025 17:03:36 +0100 Subject: [PATCH] Increased F-weight [ci skip] --- openquake/hazardlib/contexts.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/openquake/hazardlib/contexts.py b/openquake/hazardlib/contexts.py index 30fc9a2dd82..4ef16ed8f56 100644 --- a/openquake/hazardlib/contexts.py +++ b/openquake/hazardlib/contexts.py @@ -1316,6 +1316,8 @@ def estimate_weight(self, src, srcfilter, multiplier=1): weight *= 2 elif src.code == b'N': # increase weight in MEX and SAM weight *= 5. + elif src.code == b'N': # increase weight in USA + weight *= 2. return max(weight, eps), int(esites) def set_weight(self, sources, srcfilter, multiplier=1):