diff --git a/etc/examples/7-disaggregation/README.md b/etc/examples/7-disaggregation/README.md index 64e40934df1eea15b7452ccf2a63d6d78b6d7fba..a01f54397295e2ba55c14878526aae6785b7aff1 100644 --- a/etc/examples/7-disaggregation/README.md +++ b/etc/examples/7-disaggregation/README.md @@ -61,7 +61,7 @@ Note that in the output above, there are only disaggregation results for subduct will not be saved. <!-- markdownlint-disable MD001 --> -#### Next: [Example 8 – Earthquake probabilities and rates](../8-probabilities/README.md) +<!-- #### Next: [Example 8 – Earthquake probabilities and rates](../8-probabilities/README.md) --> --- diff --git a/etc/examples/8-probabilities/README.md b/etc/examples/8-probabilities/README.md deleted file mode 100644 index 4647c3da9ddfabc645d0f4404c6edc0f1329e889..0000000000000000000000000000000000000000 --- a/etc/examples/8-probabilities/README.md +++ /dev/null @@ -1,61 +0,0 @@ -# Example 8: Earthquake probabilities and rates - -__Working directory:__ `/path/to/nshmp-haz/etc/examples/8-probabilities` - -`nshmp-haz` can also calculate earthquake probabilities and rates at a location. -As with the `HazardCalc` and `DisaggCalc` programs, `RateCalc` takes a model, a site data file -or string, and an optional config file, which will control whether the distributions generated -are incremental or cumulative, and whether the distribution values are expressed as annual rates -or Poisson probabilities. The default (no config supplied) settings are for incremental -annual-rates. The `config.rate` elements also specify the cutoff `distance`, within which -all sources should be included, and a `timespan` used for conversion to Poisson probabilities. - -For this example, the following system alias is helpful: - -```Shell -alias rate='java -Xms4g -Xmx8g -cp /path/to/nshmp-haz/build/libs/nshmp-haz.jar gov.usgs.earthquake.nshmp.RateCalc' -``` - -Assuming a copy of the CONUS NSHM is available (see [Example 5](../5-complex-model)), execute: - -```Shell -rate ../../../../nshm-conus sites.csv config-sites.json -``` - -to generate incremental, annual-rate output for a list of sites, or - -```Shell -rate ../../../../nshm-conus map.geojson config-map.json -``` - -to generate a map of cumulative Poisson probabilities (i.e. P ≥ M). - -Like `HazardCalc`, `RateCalc` observes the `config.output.dataTypes` `SOURCE` -option and will include a `source` directory with rates or probabilities for all -contributing source types. - -__Results directory structure:__ - -```text -8-probabilities/ - ├─ hazout-rate-sites/ - │ ├─ config.json - │ ├─ RateCalc.log - │ ├─ rates.csv - │ └─ source/ - │ ├─ FAULT/ - │ │ └─ probs.csv - │ └─ ... - └─ hazout-prob-map/ - ├─ config.json - ├─ RateCalc.log - └─ probs.csv - └─ source/ - ├─ FAULT/ - │ └─ rates.csv - └─ ... -``` - ---- - -* [**Documentation Index**](../../../docs/README.md) diff --git a/etc/examples/8-probabilities/config-map.json b/etc/examples/8-probabilities/config-map.json deleted file mode 100644 index 8fe1479387b26dec348c70da4046e7cc8108e829..0000000000000000000000000000000000000000 --- a/etc/examples/8-probabilities/config-map.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "output": { - "dataTypes": ["SOURCE"], - "directory": "hazout-prob-map" - }, - "rate": { - "distance": 10.0, - "valueFormat": "POISSON_PROBABILITY", - "distributionFormat": "CUMULATIVE", - "timespan": 50.0 - } -} diff --git a/etc/examples/8-probabilities/config-sites.json b/etc/examples/8-probabilities/config-sites.json deleted file mode 100644 index fa865014fc0b306cfd5bd603a7c02b56712bdac0..0000000000000000000000000000000000000000 --- a/etc/examples/8-probabilities/config-sites.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "output": { - "dataTypes": ["SOURCE"], - "directory": "hazout-rate-sites" - } -} diff --git a/etc/examples/8-probabilities/map.geojson b/etc/examples/8-probabilities/map.geojson deleted file mode 100644 index 77ba418305feb514f068c8ed64dd223065fb32ef..0000000000000000000000000000000000000000 --- a/etc/examples/8-probabilities/map.geojson +++ /dev/null @@ -1,22 +0,0 @@ -{ - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "geometry": { - "type": "Polygon", - "coordinates": [[ - [-123.0, 37.0], - [-121.0, 37.0], - [-121.0, 39.0], - [-123.0, 39.0], - [-123.0, 37.0] - ]] - }, - "properties": { - "spacing": 0.2, - "title": "San Francisco Bay Area" - } - } - ] -} diff --git a/etc/examples/8-probabilities/sites.csv b/etc/examples/8-probabilities/sites.csv deleted file mode 100644 index b55826d0fd00d2c5ba3b83fa2250cca4a9d91af3..0000000000000000000000000000000000000000 --- a/etc/examples/8-probabilities/sites.csv +++ /dev/null @@ -1,14 +0,0 @@ -name, lon, lat -Fresno CA, -119.75, 36.75 -Los Angeles CA, -118.25, 34.05 -Oakland CA, -122.25, 37.80 -San Francisco CA, -122.40, 37.75 -San Jose CA, -121.90, 37.35 -Santa Rosa CA, -122.70, 38.45 -Vallejo CA, -122.25, 38.10 -Las Vegas NV, -115.15, 36.20 -Reno NV, -119.80, 39.55 -Eugene OR, -123.10, 44.05 -Salt Lake City UT, -111.90, 40.75 -Tacoma WA, -122.45, 47.25 -Jackson WY, -110.75, 43.50