Skip to content
Snippets Groups Projects
Commit 75a027b6 authored by Powers, Peter M.'s avatar Powers, Peter M.
Browse files

build, run, and doc updates

parent ca43f638
No related branches found
No related tags found
1 merge request!20Propagating numerous changes to upstream
Showing
with 749 additions and 13 deletions
Unless otherwise noted, the software and content on this site is Unless otherwise noted, this software is in the public domain because it
in the public domain because it contains materials developed by contains materials that originally came from the United States Geological
the United States Geological Survey, an agency of the United States Survey, an agency of the United States Department of Interior. For more
Department of Interior. For more information, see the official USGS information, see the official USGS copyright policy at:
copyright policy at:
http://www.usgs.gov/visual-id/credit_usgs.html#copyright http://www.usgs.gov/visual-id/credit_usgs.html#copyright
This software and content is distributed on an "AS IS" BASIS, WITHOUT This software and content is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. Any WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
dependent libraries included here are distributed under open source
(or open source-like) licenses/agreements. Appropriate license agreements Dependent libraries found in the "lib" directory are distributed under the
are included with each library. Apache License, Version 2.0. You may obtain a copy of the License at
\ No newline at end of file
http://www.apache.org/licenses/LICENSE-2.0
See the License for the specific language governing permissions and
limitations under the License.
Runtime libs:
- guava-18.0.jar (https://github.com/google/guava)
(https://code.google.com/p/guava-libraries)
- gson-2.3.jar (https://code.google.com/p/google-gson)
- commons-math3-3.3.jar (http://commons.apache.org/proper/commons-math)
Build libs:
- ant-1.9.5.jar (http://ant.apache.org)
- ant-lancher-1.9.5 (http://ant.apache.org)
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project name="nshmp-haz" default="javadoc" basedir="."> <project name="nshmp-haz" default="build" basedir=".">
<description> <description>
nshmp-sha is a platform for seismic hazard calculations nshmp-haz is a platform for conducting seismic hazard calculations
</description> </description>
<property name="src.dir" value="src/" /> <property name="src.dir" value="src/" />
<property name="lib.dir" value="lib/" /> <property name="lib.dir" value="lib/" />
<property name="classes.dir" value="classes/" /> <property name="classes.dir" value="classes/" />
<property name="dist.dir" value="dist/" /> <property name="dist.dir" value="dist/" />
<property name="javadoc.dir" value="../nshmp-haz.gh-pages/" /> <property name="javadoc.dir" value="../nshmp-haz.gh-pages/javadoc" />
<path id="library.classpath"> <path id="library.classpath">
<fileset dir="${lib.dir}"> <fileset dir="${lib.dir}">
...@@ -21,7 +21,10 @@ ...@@ -21,7 +21,10 @@
<target name="build" depends="compile"> <target name="build" depends="compile">
<jar destfile="${dist.dir}nshmp-haz.jar"> <jar destfile="${dist.dir}nshmp-haz.jar">
<fileset dir="${classes.dir}" /> <fileset dir="${classes.dir}" />
<zipgroupfileset dir="${lib.dir}" includes="*.jar" /> <zipgroupfileset dir="${lib.dir}">
<include name="*.jar" />
<exclude name="ant-*" />
</zipgroupfileset>
</jar> </jar>
</target> </target>
...@@ -37,6 +40,7 @@ ...@@ -37,6 +40,7 @@
destdir="${classes.dir}" destdir="${classes.dir}"
classpathref="library.classpath" classpathref="library.classpath"
nowarn="true" nowarn="true"
fork="true"
source="1.7" source="1.7"
target="1.7" target="1.7"
encoding="UTF-8" encoding="UTF-8"
......
#!/bin/bash #!/bin/bash
# TODO not sure this is needed in light of ant based jar builder
# Run this script from the root of a project # Run this script from the root of a project
# Assuming Java (is available (javac specifically), this script will # Assuming Java (is available (javac specifically), this script will
......
{
"exceedanceModel": "TRUNCATION_UPPER_ONLY",
"truncationLevel": 2.0,
"defaultImls": [
0.002,
0.004,
0.007,
0.011,
0.017,
0.025,
0.040,
0.060,
0.085,
0.13,
0.19,
0.29,
0.43,
0.65,
0.97,
1.5,
2.2,
3.3,
5.0,
7.4
],
"customImls": {
"PGA": [0.0050, 0.0070, 0.0098, 0.0137, 0.0192, 0.0269, 0.0376, 0.0527, 0.0738, 0.103, 0.145, 0.203, 0.284, 0.397, 0.556, 0.778, 1.09, 1.52, 2.2, 3.3],
"SA0P2": [0.0050, 0.0075, 0.0113, 0.0169, 0.0253, 0.0380, 0.0570, 0.0854, 0.128, 0.192, 0.288, 0.432, 0.649, 0.973, 1.46, 2.19, 3.28, 4.92, 7.38],
"SA1P0": [0.0025, 0.00375, 0.00563, 0.00844, 0.0127, 0.0190, 0.0285, 0.0427, 0.0641, 0.0961, 0.144, 0.216, 0.324, 0.487, 0.730, 1.09, 1.64, 2.46, 3.69, 5.54]
},
"deagg": {
"rMin": 0.0,
"rMax": 100.0,
"Δr": 10.0,
"mMin": 5.0,
"mMax": 7.0,
"Δm": 0.1,
"εMin": -3.0,
"εMax": 3.0,
"Δε": 0.5
},
"sites": {
"region": {
"name": "Test Map",
"spacing": 0.1,
"border": [
[-111, 40],
[-110, 41],
[-109, 40]
],
"vs30": 459,
"vsInf": true,
"z1p0": 0.48,
"z2p5": 1.62
}
}
}
\ No newline at end of file
{
"exceedanceModel": "TRUNCATION_UPPER_ONLY",
"truncationLevel": 2.0,
"defaultImls": [
0.002,
0.004,
0.007,
0.011,
0.017,
0.025,
0.040,
0.060,
0.085,
0.13,
0.19,
0.29,
0.43,
0.65,
0.97,
1.5,
2.2,
3.3,
5.0,
7.4
],
"customImls": {
"PGA": [0.0050, 0.0070, 0.0098, 0.0137, 0.0192, 0.0269, 0.0376, 0.0527, 0.0738, 0.103, 0.145, 0.203, 0.284, 0.397, 0.556, 0.778, 1.09, 1.52, 2.2, 3.3],
"SA0P2": [0.0050, 0.0075, 0.0113, 0.0169, 0.0253, 0.0380, 0.0570, 0.0854, 0.128, 0.192, 0.288, 0.432, 0.649, 0.973, 1.46, 2.19, 3.28, 4.92, 7.38],
"SA1P0": [0.0025, 0.00375, 0.00563, 0.00844, 0.0127, 0.0190, 0.0285, 0.0427, 0.0641, 0.0961, 0.144, 0.216, 0.324, 0.487, 0.730, 1.09, 1.64, 2.46, 3.69, 5.54]
},
"deagg": {
"rMin": 0.0,
"rMax": 100.0,
"Δr": 10.0,
"mMin": 5.0,
"mMax": 7.0,
"Δm": 0.1,
"εMin": -3.0,
"εMax": 3.0,
"Δε": 0.5
},
"sites": [
{
"name": "Test Site 1",
"location": [-111.9, 40.75],
"vs30": 760,
"vsInf": true
},
{
"name": "Test Site 2",
"location": [-111.9, 40.75],
"vs30": 760,
"vsInf": true
}
]
}
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SubductionSourceSet id="-1" name="cascadia.bot.8082.in" weight="0.0051282">
<Settings>
<SourceProperties ruptureScaling="NSHM_SUB_GEOMAT_LENGTH"/>
</Settings>
<Source id="-1" name="Cascadia Megathrust">
<IncrementalMfd a="3.8529" b="0.717857" dMag="0.1" mMax="8.2" mMin="8.0" type="GR" weight="1.0"/>
<Geometry rake="90.0">
<Trace>
-124.70400,40.36300,5.49326
-124.97700,41.21400,4.98856
-125.14000,42.09600,4.89734
-125.21900,42.96500,4.84761
-125.25700,43.85200,4.87128
-125.31300,44.71800,4.78242
-125.41600,45.45800,4.41088
-125.62300,46.33700,4.02817
-125.74600,46.64200,3.79740
-125.87400,46.96500,3.64988
-126.01500,47.28900,3.65067
-126.24000,47.66100,3.67516
-126.42200,47.99400,3.90795
-126.66000,48.28700,4.12516
-127.03700,48.71100,4.58367
-127.60500,49.27900,4.76158
</Trace>
<LowerTrace>
-123.82900,40.34700,20.38490
-124.13700,41.21800,17.41390
-124.25200,42.11500,17.52740
-124.31300,42.98400,17.29190
-124.26300,43.86800,18.56200
-124.21300,44.74000,19.77810
-124.09900,45.49400,22.30320
-123.85300,46.36900,25.75860
-123.64400,46.81100,27.11490
-123.42300,47.30000,27.61730
-123.44000,47.79200,27.50930
-124.07500,48.22100,26.02160
-124.77300,48.56000,25.72870
-125.40900,48.87300,25.44710
-126.11700,49.24400,24.71340
-126.91100,49.68700,22.75770
</LowerTrace>
</Geometry>
</Source>
</SubductionSourceSet>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SubductionSourceSet id="-1" name="cascadia.bot.8387.in" weight="0.0102564">
<Settings>
<SourceProperties ruptureScaling="NSHM_SUB_GEOMAT_LENGTH"/>
</Settings>
<Source id="-1" name="Cascadia Megathrust">
<IncrementalMfd a="3.8529" b="0.717857" dMag="0.1" mMax="8.7" mMin="8.3" type="GR" weight="1.0"/>
<Geometry rake="90.0">
<Trace>
-124.70400,40.36300,5.49326
-124.97700,41.21400,4.98856
-125.14000,42.09600,4.89734
-125.21900,42.96500,4.84761
-125.25700,43.85200,4.87128
-125.31300,44.71800,4.78242
-125.41600,45.45800,4.41088
-125.62300,46.33700,4.02817
-125.74600,46.64200,3.79740
-125.87400,46.96500,3.64988
-126.01500,47.28900,3.65067
-126.24000,47.66100,3.67516
-126.42200,47.99400,3.90795
-126.66000,48.28700,4.12516
-127.03700,48.71100,4.58367
-127.60500,49.27900,4.76158
</Trace>
<LowerTrace>
-123.82900,40.34700,20.38490
-124.13700,41.21800,17.41390
-124.25200,42.11500,17.52740
-124.31300,42.98400,17.29190
-124.26300,43.86800,18.56200
-124.21300,44.74000,19.77810
-124.09900,45.49400,22.30320
-123.85300,46.36900,25.75860
-123.64400,46.81100,27.11490
-123.42300,47.30000,27.61730
-123.44000,47.79200,27.50930
-124.07500,48.22100,26.02160
-124.77300,48.56000,25.72870
-125.40900,48.87300,25.44710
-126.11700,49.24400,24.71340
-126.91100,49.68700,22.75770
</LowerTrace>
</Geometry>
</Source>
</SubductionSourceSet>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SubductionSourceSet id="-1" name="cascadia.bot.9pm.in" weight="0.13333">
<Settings>
<SourceProperties ruptureScaling="NSHM_SUB_GEOMAT_LENGTH"/>
</Settings>
<Source id="-1" name="Cascadia Megathrust">
<IncrementalMfd a="0.0019998619" floats="false" m="8.8" type="SINGLE" weight="0.2"/>
<IncrementalMfd a="0.0019952623" floats="false" m="9.0" type="SINGLE" weight="0.6"/>
<IncrementalMfd a="0.0019998619" floats="false" m="9.2" type="SINGLE" weight="0.2"/>
<Geometry rake="90.0">
<Trace>
-124.70400,40.36300,5.49326
-124.97700,41.21400,4.98856
-125.14000,42.09600,4.89734
-125.21900,42.96500,4.84761
-125.25700,43.85200,4.87128
-125.31300,44.71800,4.78242
-125.41600,45.45800,4.41088
-125.62300,46.33700,4.02817
-125.74600,46.64200,3.79740
-125.87400,46.96500,3.64988
-126.01500,47.28900,3.65067
-126.24000,47.66100,3.67516
-126.42200,47.99400,3.90795
-126.66000,48.28700,4.12516
-127.03700,48.71100,4.58367
-127.60500,49.27900,4.76158
</Trace>
<LowerTrace>
-123.82900,40.34700,20.38490
-124.13700,41.21800,17.41390
-124.25200,42.11500,17.52740
-124.31300,42.98400,17.29190
-124.26300,43.86800,18.56200
-124.21300,44.74000,19.77810
-124.09900,45.49400,22.30320
-123.85300,46.36900,25.75860
-123.64400,46.81100,27.11490
-123.42300,47.30000,27.61730
-123.44000,47.79200,27.50930
-124.07500,48.22100,26.02160
-124.77300,48.56000,25.72870
-125.40900,48.87300,25.44710
-126.11700,49.24400,24.71340
-126.91100,49.68700,22.75770
</LowerTrace>
</Geometry>
</Source>
</SubductionSourceSet>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SubductionSourceSet id="-1" name="cascadia.mid.8082.in" weight="0.0051282">
<Settings>
<SourceProperties ruptureScaling="NSHM_SUB_GEOMAT_LENGTH"/>
</Settings>
<Source id="-1" name="Cascadia Megathrust">
<IncrementalMfd a="3.8529" b="0.717857" dMag="0.1" mMax="8.2" mMin="8.0" type="GR" weight="1.0"/>
<Geometry rake="90.0">
<Trace>
-124.70400,40.36300,5.49300
-124.97700,41.21400,4.98900
-125.14000,42.09600,4.89700
-125.21900,42.96500,4.84800
-125.25700,43.85200,4.87100
-125.31300,44.71800,4.78200
-125.41600,45.45800,4.41100
-125.62300,46.33700,4.02800
-125.74600,46.64200,3.79700
-125.87400,46.96500,3.65000
-126.01500,47.28900,3.65100
-126.24000,47.66100,3.67500
-126.42200,47.99400,3.90800
-126.66000,48.28700,4.12500
-127.03700,48.71100,4.58400
-127.60500,49.27900,4.76200
</Trace>
<LowerTrace>
-124.04100,40.34700,15.55000
-124.33000,41.21400,13.46000
-124.47400,42.11000,13.44000
-124.53700,42.97800,13.32000
-124.51500,43.86100,14.19000
-124.49500,44.73700,14.89000
-124.43400,45.48700,16.57000
-124.28900,46.36100,19.00000
-124.16900,46.77500,20.00000
-124.05100,47.21500,20.35000
-124.09500,47.66900,20.10000
-124.59800,48.08600,19.47000
-125.19900,48.41600,19.09000
-125.73400,48.72300,18.90000
-126.35400,49.11100,18.46000
-127.08400,49.59500,17.37000
</LowerTrace>
</Geometry>
</Source>
</SubductionSourceSet>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SubductionSourceSet id="-1" name="cascadia.mid.8387.in" weight="0.0102564">
<Settings>
<SourceProperties ruptureScaling="NSHM_SUB_GEOMAT_LENGTH"/>
</Settings>
<Source id="-1" name="Cascadia Megathrust">
<IncrementalMfd a="3.8529" b="0.717857" dMag="0.1" mMax="8.7" mMin="8.3" type="GR" weight="1.0"/>
<Geometry rake="90.0">
<Trace>
-124.70400,40.36300,5.49300
-124.97700,41.21400,4.98900
-125.14000,42.09600,4.89700
-125.21900,42.96500,4.84800
-125.25700,43.85200,4.87100
-125.31300,44.71800,4.78200
-125.41600,45.45800,4.41100
-125.62300,46.33700,4.02800
-125.74600,46.64200,3.79700
-125.87400,46.96500,3.65000
-126.01500,47.28900,3.65100
-126.24000,47.66100,3.67500
-126.42200,47.99400,3.90800
-126.66000,48.28700,4.12500
-127.03700,48.71100,4.58400
-127.60500,49.27900,4.76200
</Trace>
<LowerTrace>
-124.04100,40.34700,15.55000
-124.33000,41.21400,13.46000
-124.47400,42.11000,13.44000
-124.53700,42.97800,13.32000
-124.51500,43.86100,14.19000
-124.49500,44.73700,14.89000
-124.43400,45.48700,16.57000
-124.28900,46.36100,19.00000
-124.16900,46.77500,20.00000
-124.05100,47.21500,20.35000
-124.09500,47.66900,20.10000
-124.59800,48.08600,19.47000
-125.19900,48.41600,19.09000
-125.73400,48.72300,18.90000
-126.35400,49.11100,18.46000
-127.08400,49.59500,17.37000
</LowerTrace>
</Geometry>
</Source>
</SubductionSourceSet>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SubductionSourceSet id="-1" name="cascadia.mid.9pm.in" weight="0.13333">
<Settings>
<SourceProperties ruptureScaling="NSHM_SUB_GEOMAT_LENGTH"/>
</Settings>
<Source id="-1" name="Cascadia Megathrust">
<IncrementalMfd a="0.0019998619" floats="false" m="8.8" type="SINGLE" weight="0.2"/>
<IncrementalMfd a="0.0019952623" floats="false" m="9.0" type="SINGLE" weight="0.6"/>
<IncrementalMfd a="0.0019998619" floats="false" m="9.2" type="SINGLE" weight="0.2"/>
<Geometry rake="90.0">
<Trace>
-124.70400,40.36300,5.49300
-124.97700,41.21400,4.98900
-125.14000,42.09600,4.89700
-125.21900,42.96500,4.84800
-125.25700,43.85200,4.87100
-125.31300,44.71800,4.78200
-125.41600,45.45800,4.41100
-125.62300,46.33700,4.02800
-125.74600,46.64200,3.79700
-125.87400,46.96500,3.65000
-126.01500,47.28900,3.65100
-126.24000,47.66100,3.67500
-126.42200,47.99400,3.90800
-126.66000,48.28700,4.12500
-127.03700,48.71100,4.58400
-127.60500,49.27900,4.76200
</Trace>
<LowerTrace>
-124.04100,40.34700,15.55000
-124.33000,41.21400,13.46000
-124.47400,42.11000,13.44000
-124.53700,42.97800,13.32000
-124.51500,43.86100,14.19000
-124.49500,44.73700,14.89000
-124.43400,45.48700,16.57000
-124.28900,46.36100,19.00000
-124.16900,46.77500,20.00000
-124.05100,47.21500,20.35000
-124.09500,47.66900,20.10000
-124.59800,48.08600,19.47000
-125.19900,48.41600,19.09000
-125.73400,48.72300,18.90000
-126.35400,49.11100,18.46000
-127.08400,49.59500,17.37000
</LowerTrace>
</Geometry>
</Source>
</SubductionSourceSet>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SubductionSourceSet id="-1" name="cascadia.older2.8082.in" weight="0.012833">
<Settings>
<SourceProperties ruptureScaling="NSHM_SUB_GEOMAT_LENGTH"/>
</Settings>
<Source id="-1" name="Cascadia Megathrust">
<IncrementalMfd a="3.8529" b="0.717857" dMag="0.1" mMax="8.2" mMin="8.0" type="GR" weight="1.0"/>
<Geometry rake="90.0">
<Trace>
-124.70400,40.36300,5.49300
-124.97700,41.21400,4.98900
-125.14000,42.09600,4.89700
-125.21900,42.96500,4.84800
-125.25700,43.85200,4.87100
-125.31300,44.71800,4.78200
-125.41600,45.45800,4.41100
-125.62300,46.33700,4.02800
-125.74600,46.64200,3.79700
-125.87400,46.96500,3.65000
-126.01500,47.28900,3.65100
-126.24000,47.66100,3.67500
-126.42200,47.99400,3.90800
-126.66000,48.28700,4.12500
-127.03700,48.71100,4.58400
-127.60500,49.27900,4.76200
</Trace>
<LowerTrace>
-123.80000,40.34700,20.00000
-123.80000,41.21400,20.00000
-123.80000,42.11000,20.00000
-123.80000,42.97800,20.00000
-123.80000,43.86100,20.00000
-123.80000,44.73700,20.00000
-123.80000,45.48700,20.00000
-123.80000,46.36100,20.00000
-123.80000,46.77500,20.00000
-123.80000,47.21500,20.00000
-123.80000,47.66900,20.00000
-124.29800,48.08600,20.00000
-124.89900,48.41600,20.00000
-125.43500,48.72300,20.00000
-126.05400,49.11100,20.00000
-126.78400,49.59500,20.00000
</LowerTrace>
</Geometry>
</Source>
</SubductionSourceSet>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SubductionSourceSet id="-1" name="cascadia.older2.8387.in" weight="0.025644">
<Settings>
<SourceProperties ruptureScaling="NSHM_SUB_GEOMAT_LENGTH"/>
</Settings>
<Source id="-1" name="Cascadia Megathrust">
<IncrementalMfd a="3.8529" b="0.717857" dMag="0.1" mMax="8.7" mMin="8.3" type="GR" weight="1.0"/>
<Geometry rake="90.0">
<Trace>
-124.70400,40.36300,5.49300
-124.97700,41.21400,4.98900
-125.14000,42.09600,4.89700
-125.21900,42.96500,4.84800
-125.25700,43.85200,4.87100
-125.31300,44.71800,4.78200
-125.41600,45.45800,4.41100
-125.62300,46.33700,4.02800
-125.74600,46.64200,3.79700
-125.87400,46.96500,3.65000
-126.01500,47.28900,3.65100
-126.24000,47.66100,3.67500
-126.42200,47.99400,3.90800
-126.66000,48.28700,4.12500
-127.03700,48.71100,4.58400
-127.60500,49.27900,4.76200
</Trace>
<LowerTrace>
-123.80000,40.34700,20.00000
-123.80000,41.21400,20.00000
-123.80000,42.11000,20.00000
-123.80000,42.97800,20.00000
-123.80000,43.86100,20.00000
-123.80000,44.73700,20.00000
-123.80000,45.48700,20.00000
-123.80000,46.36100,20.00000
-123.80000,46.77500,20.00000
-123.80000,47.21500,20.00000
-123.80000,47.66900,20.00000
-124.29800,48.08600,20.00000
-124.89900,48.41600,20.00000
-125.43500,48.72300,20.00000
-126.05400,49.11100,20.00000
-126.78400,49.59500,20.00000
</LowerTrace>
</Geometry>
</Source>
</SubductionSourceSet>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SubductionSourceSet id="-1" name="cascadia.older2.9pm.in" weight="0.3333">
<Settings>
<SourceProperties ruptureScaling="NSHM_SUB_GEOMAT_LENGTH"/>
</Settings>
<Source id="-1" name="Cascadia Megathrust">
<IncrementalMfd a="0.0019998619" floats="false" m="8.8" type="SINGLE" weight="0.2"/>
<IncrementalMfd a="0.0019952623" floats="false" m="9.0" type="SINGLE" weight="0.6"/>
<IncrementalMfd a="0.0019998619" floats="false" m="9.2" type="SINGLE" weight="0.2"/>
<Geometry rake="90.0">
<Trace>
-124.70400,40.36300,5.49300
-124.97700,41.21400,4.98900
-125.14000,42.09600,4.89700
-125.21900,42.96500,4.84800
-125.25700,43.85200,4.87100
-125.31300,44.71800,4.78200
-125.41600,45.45800,4.41100
-125.62300,46.33700,4.02800
-125.74600,46.64200,3.79700
-125.87400,46.96500,3.65000
-126.01500,47.28900,3.65100
-126.24000,47.66100,3.67500
-126.42200,47.99400,3.90800
-126.66000,48.28700,4.12500
-127.03700,48.71100,4.58400
-127.60500,49.27900,4.76200
</Trace>
<LowerTrace>
-123.80000,40.34700,20.00000
-123.80000,41.21400,20.00000
-123.80000,42.11000,20.00000
-123.80000,42.97800,20.00000
-123.80000,43.86100,20.00000
-123.80000,44.73700,20.00000
-123.80000,45.48700,20.00000
-123.80000,46.36100,20.00000
-123.80000,46.77500,20.00000
-123.80000,47.21500,20.00000
-123.80000,47.66900,20.00000
-124.29800,48.08600,20.00000
-124.89900,48.41600,20.00000
-125.43500,48.72300,20.00000
-126.05400,49.11100,20.00000
-126.78400,49.59500,20.00000
</LowerTrace>
</Geometry>
</Source>
</SubductionSourceSet>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SubductionSourceSet id="-1" name="cascadia.top.8082.in" weight="0.0025641">
<Settings>
<SourceProperties ruptureScaling="NSHM_SUB_GEOMAT_LENGTH"/>
</Settings>
<Source id="-1" name="Cascadia Megathrust">
<IncrementalMfd a="3.8529" b="0.717857" dMag="0.1" mMax="8.2" mMin="8.0" type="GR" weight="1.0"/>
<Geometry rake="90.0">
<Trace>
-124.70400,40.36300,5.49300
-124.97700,41.21400,4.98900
-125.14000,42.09600,4.89700
-125.21900,42.96500,4.84800
-125.25700,43.85200,4.87100
-125.31300,44.71800,4.78200
-125.41600,45.45800,4.41100
-125.62300,46.33700,4.02800
-125.74600,46.64200,3.79700
-125.87400,46.96500,3.65000
-126.01500,47.28900,3.65100
-126.24000,47.66100,3.67500
-126.42200,47.99400,3.90800
-126.66000,48.28700,4.12500
-127.03700,48.71100,4.58400
-127.60500,49.27900,4.76200
</Trace>
<LowerTrace>
-124.25400,40.34700,10.71000
-124.52300,41.21000,9.50900
-124.69600,42.10400,9.36000
-124.76200,42.97100,9.35400
-124.76700,43.85400,9.81200
-124.77800,44.73400,10.01000
-124.76900,45.48000,10.83000
-124.72600,46.35300,12.25000
-124.69400,46.73800,12.88000
-124.67900,47.12900,13.08000
-124.75100,47.54600,12.69000
-125.12000,47.95200,12.91000
-125.62500,48.27200,12.45000
-126.06000,48.57300,12.35000
-126.59100,48.97800,12.20000
-127.25700,49.50200,11.99000
</LowerTrace>
</Geometry>
</Source>
</SubductionSourceSet>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SubductionSourceSet id="-1" name="cascadia.top.8387.in" weight="0.0051282">
<Settings>
<SourceProperties ruptureScaling="NSHM_SUB_GEOMAT_LENGTH"/>
</Settings>
<Source id="-1" name="Cascadia Megathrust">
<IncrementalMfd a="3.8529" b="0.717857" dMag="0.1" mMax="8.7" mMin="8.3" type="GR" weight="1.0"/>
<Geometry rake="90.0">
<Trace>
-124.70400,40.36300,5.49300
-124.97700,41.21400,4.98900
-125.14000,42.09600,4.89700
-125.21900,42.96500,4.84800
-125.25700,43.85200,4.87100
-125.31300,44.71800,4.78200
-125.41600,45.45800,4.41100
-125.62300,46.33700,4.02800
-125.74600,46.64200,3.79700
-125.87400,46.96500,3.65000
-126.01500,47.28900,3.65100
-126.24000,47.66100,3.67500
-126.42200,47.99400,3.90800
-126.66000,48.28700,4.12500
-127.03700,48.71100,4.58400
-127.60500,49.27900,4.76200
</Trace>
<LowerTrace>
-124.25400,40.34700,10.71000
-124.52300,41.21000,9.50900
-124.69600,42.10400,9.36000
-124.76200,42.97100,9.35400
-124.76700,43.85400,9.81200
-124.77800,44.73400,10.01000
-124.76900,45.48000,10.83000
-124.72600,46.35300,12.25000
-124.69400,46.73800,12.88000
-124.67900,47.12900,13.08000
-124.75100,47.54600,12.69000
-125.12000,47.95200,12.91000
-125.62500,48.27200,12.45000
-126.06000,48.57300,12.35000
-126.59100,48.97800,12.20000
-127.25700,49.50200,11.99000
</LowerTrace>
</Geometry>
</Source>
</SubductionSourceSet>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<SubductionSourceSet id="-1" name="cascadia.top.9pm.in" weight="0.06666667">
<Settings>
<SourceProperties ruptureScaling="NSHM_SUB_GEOMAT_LENGTH"/>
</Settings>
<Source id="-1" name="Cascadia Megathrust">
<IncrementalMfd a="0.0019998619" floats="false" m="8.8" type="SINGLE" weight="0.2"/>
<IncrementalMfd a="0.0019952623" floats="false" m="9.0" type="SINGLE" weight="0.6"/>
<IncrementalMfd a="0.0019998619" floats="false" m="9.2" type="SINGLE" weight="0.2"/>
<Geometry rake="90.0">
<Trace>
-124.70400,40.36300,5.49300
-124.97700,41.21400,4.98900
-125.14000,42.09600,4.89700
-125.21900,42.96500,4.84800
-125.25700,43.85200,4.87100
-125.31300,44.71800,4.78200
-125.41600,45.45800,4.41100
-125.62300,46.33700,4.02800
-125.74600,46.64200,3.79700
-125.87400,46.96500,3.65000
-126.01500,47.28900,3.65100
-126.24000,47.66100,3.67500
-126.42200,47.99400,3.90800
-126.66000,48.28700,4.12500
-127.03700,48.71100,4.58400
-127.60500,49.27900,4.76200
</Trace>
<LowerTrace>
-124.25400,40.34700,10.71000
-124.52300,41.21000,9.50900
-124.69600,42.10400,9.36000
-124.76200,42.97100,9.35400
-124.76700,43.85400,9.81200
-124.77800,44.73400,10.01000
-124.76900,45.48000,10.83000
-124.72600,46.35300,12.25000
-124.69400,46.73800,12.88000
-124.67900,47.12900,13.08000
-124.75100,47.54600,12.69000
-125.12000,47.95200,12.91000
-125.62500,48.27200,12.45000
-126.06000,48.57300,12.35000
-126.59100,48.97800,12.20000
-127.25700,49.50200,11.99000
</LowerTrace>
</Geometry>
</Source>
</SubductionSourceSet>
{
"surfaceSpacing": 5.0,
"ruptureFloating": "STRIKE_ONLY"
}
\ No newline at end of file
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<GroundMotionModels>
<ModelSet maxDistance="1000.0">
<Model id="AB_03_GLOB_INTER" weight="0.25"/>
<Model id="YOUNGS_97_INTER" weight="0.25"/>
<Model id="ZHAO_06_INTER" weight="0.5"/>
</ModelSet>
</GroundMotionModels>
{
"name": "Sample Model",
"surfaceSpacing": 1.0,
"ruptureFloating": "NSHM",
"ruptureVariability": false,
"pointSourceType": "FINITE",
"areaGridScaling": "SCALED_SMALL",
"exceedanceModel": "TRUNCATION_UPPER_ONLY",
"truncationLevel": 3.0,
"customImls": {
"PGA": [0.0050, 0.0070, 0.0098, 0.0137, 0.0192, 0.0269, 0.0376, 0.0527, 0.0738, 0.103, 0.145, 0.203, 0.284, 0.397, 0.556, 0.778, 1.09, 1.52, 2.2, 3.3],
"SA0P2": [0.0050, 0.0075, 0.0113, 0.0169, 0.0253, 0.0380, 0.0570, 0.0854, 0.128, 0.192, 0.288, 0.432, 0.649, 0.973, 1.46, 2.19, 3.28, 4.92, 7.38],
"SA1P0": [0.0025, 0.00375, 0.00563, 0.00844, 0.0127, 0.0190, 0.0285, 0.0427, 0.0641, 0.0961, 0.144, 0.216, 0.324, 0.487, 0.730, 1.09, 1.64, 2.46, 3.69, 5.54]
}
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment