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

readme edits

parent 64050380
No related branches found
No related tags found
2 merge requests!593Production Release | nshm-haz,!591Code review 479
......@@ -18,7 +18,7 @@ In this example we've overridden the configuration supplied by the model. Specif
* The `imls` (intensity measure levels or x-values) of the resultant curves
have been explicitely defined for each `imt`.
See the [configuration specification]../../../docs/pages/Calculation-Configuration.md)
See the [configuration specification](../../../docs/pages/Calculation-Configuration.md)
for details on default values and supported options and formats.
__Results directory structure:__
......@@ -26,14 +26,20 @@ __Results directory structure:__
```text
2-custom-config/
└─ hazout/
├─ config.json
├─ calc-config.json
├─ HazardCalc.log
├─ PGA/
│ └─ curves.csv
│ ├─ curves.csv
│ ├─ curves-truncated.csv
│ └─ map.csv
├─ SA0P2/
│ └─ curves.csv
│ ├─ curves.csv
│ ├─ curves-truncated.csv
│ └─ map.csv
└─ SA1P0/
└─ curves.csv
├─ curves.csv
├─ curves-truncated.csv
└─ map.csv
```
<!-- markdownlint-disable MD001 -->
......
......@@ -27,11 +27,17 @@ __Results directory structure:__
├─ config.json
├─ HazardCalc.log
├─ PGA/
│ └─ curves.csv
│ ├─ curves.csv
│ ├─ curves-truncated.csv
│ └─ map.csv
├─ SA0P2/
│ └─ curves.csv
│ ├─ curves.csv
│ ├─ curves-truncated.csv
│ └─ map.csv
└─ SA1P0/
└─ curves.csv
├─ curves.csv
├─ curves-truncated.csv
└─ map.csv
```
<!-- markdownlint-disable MD001 -->
......
......@@ -86,9 +86,9 @@ public class HazardMaps {
Path curvesPath,
List<Integer> returnPeriods,
Logger log) throws IOException {
log.info(PROGRAM + ": Creating hazard map dataset:");
log.info("\tReturn periods: " + returnPeriods.toString());
log.info("\tPath: " + curvesPath.toAbsolutePath().toString());
log.info(PROGRAM + ": Creating hazard map datasets...");
log.info(" Return periods: " + returnPeriods.toString());
log.info(" Path: " + curvesPath.toAbsolutePath().toString());
if (Files.isDirectory(curvesPath)) {
CurvesVisitor curvesFinder = new CurvesVisitor(returnPeriods);
......
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