From be815779e363baefe9512949c109ebfbf01787b6 Mon Sep 17 00:00:00 2001 From: Peter Powers <pmpowers@usgs.gov> Date: Thu, 31 Mar 2022 11:27:07 -0600 Subject: [PATCH] updated readme and kbcg comment --- README.md | 29 ++++++++++++------- .../earthquake/nshmp/gmm/KuehnEtAl_2020.java | 3 ++ 2 files changed, 22 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index f411459b..0821e86e 100644 --- a/README.md +++ b/README.md @@ -1,17 +1,26 @@ # nshmp-lib -***nshmp-lib*** is a USGS developed Java library that supports probabilistic seismic hazard (PSHA) -and related analyses. This project includes all the code required to load, process and query USGS -National Seismic Hazard Models (NSHMs). *nshmp-lib* is used by command line applications and web -services found in the [*nshmp-haz*](https://code.usgs.gov/ghsc/nshmp/nshmp-haz) project. See that -project for running PSHA calculations. +***nshmp-lib*** is a U.S. Geological Survey ([USGS][1]) developed Java library that supports +probabilistic seismic hazard (PSHA) and related analyses. This project includes all the code +required to load, process and query USGS National Seismic Hazard Models (NSHMs). *nshmp-lib* is +used by command line applications and web services found in the [*nshmp-haz*][2] project. See +that project for details on running PSHA calculations. -The project uses [Gradle](https://gradle.org/) for building and testing. To run unit tests and -create a JAR file for use in other projects, run `./gradlew build` from the root of the repository. +The project uses [Gradle][3] for building and testing. To run unit tests and create a JAR file +for use in other projects, run `./gradlew build` from the root of the repository. (or `./gradlew.bat build` if using Windows). See also: -* [*nshmp-haz*](https://code.usgs.gov/ghsc/nshmp/nshmp-haz) and related - [documentation](https://code.usgs.gov/ghsc/nshmp/nshmp-haz/-/blob/main/docs/README.md) -* Project [Javadocs](https://earthquake.usgs.gov/nshmp/docs/nshmp-lib/) +* [*nshmp-haz*][4] and related [documentation][5] +* Project [Javadocs][6] + +DOI: https://doi.org/10.5066/P9DKFJ5V (version [1.0.0][7]) + +[1]: https://www.usgs.gov +[2]: https://code.usgs.gov/ghsc/nshmp/nshmp-haz +[3]: https://gradle.org/ +[4]: https://code.usgs.gov/ghsc/nshmp/nshmp-haz +[5]: https://code.usgs.gov/ghsc/nshmp/nshmp-haz/-/blob/main/docs/README.md +[6]: https://earthquake.usgs.gov/nshmp/docs/nshmp-lib/ +[7]: https://code.usgs.gov/ghsc/nshmp/nshmp-lib/-/tags/1.0.0 diff --git a/src/main/java/gov/usgs/earthquake/nshmp/gmm/KuehnEtAl_2020.java b/src/main/java/gov/usgs/earthquake/nshmp/gmm/KuehnEtAl_2020.java index f41cfce9..395f4553 100644 --- a/src/main/java/gov/usgs/earthquake/nshmp/gmm/KuehnEtAl_2020.java +++ b/src/main/java/gov/usgs/earthquake/nshmp/gmm/KuehnEtAl_2020.java @@ -81,6 +81,9 @@ import gov.usgs.earthquake.nshmp.tree.LogicTree; * basin term to exceed that for the Seattle basin. The Python code does not * seem to impose this constraint but I may not be seeing it. * + * * Uncertainty values obtained from: + * https://github.com/nikuehn/KBCG20/tree/master/UNCERTAINTY + * * @author U.S. Geological Survey */ -- GitLab