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

output of source and gmm curveTypes now processed by results from config

parent 33c27fef
No related branches found
No related tags found
1 merge request!101Significant config and output updates
{ {
"output": { "output": {
"curveTypes": ["TOTAL", "GMM", "SOURCE"] "curveTypes": ["TOTAL", "GMM"]
} }
} }
...@@ -600,7 +600,7 @@ public final class CalcConfig { ...@@ -600,7 +600,7 @@ public final class CalcConfig {
@Override @Override
public String toString() { public String toString() {
return new StringBuilder(padEnd("Calc Configuration:", VALUE_INDENT_SIZE, ' ')) return new StringBuilder("Calc Configuration: ")
.append(resource.isPresent() .append(resource.isPresent()
? resource.get().toAbsolutePath().normalize() ? resource.get().toAbsolutePath().normalize()
: "(from defaults)") : "(from defaults)")
......
...@@ -146,10 +146,11 @@ public class Results { ...@@ -146,10 +146,11 @@ public class Results {
Hazard demo = batch.get(0); Hazard demo = batch.get(0);
boolean newFile = options.length == 0; boolean newFile = options.length == 0;
boolean namedSites = demo.site.name != Site.NO_NAME; boolean namedSites = demo.site.name != Site.NO_NAME;
boolean detailed = false; //demo.config.hazardFormat.equals(HazardFormat.DETAILED); boolean gmmCurves = demo.config.output.curveTypes.contains(CurveType.GMM);
boolean sourceCurves = demo.config.output.curveTypes.contains(CurveType.SOURCE);
Map<Imt, List<String>> totalLineMap = Maps.newEnumMap(Imt.class); Map<Imt, List<String>> totalLineMap = Maps.newEnumMap(Imt.class);
Map<Imt, Map<SourceType, List<String>>> typeLineMap = Maps.newEnumMap(Imt.class); Map<Imt, Map<SourceType, List<String>>> sourceLineMap = Maps.newEnumMap(Imt.class);
Map<Imt, Map<Gmm, List<String>>> gmmLineMap = Maps.newEnumMap(Imt.class); Map<Imt, Map<Gmm, List<String>>> gmmLineMap = Maps.newEnumMap(Imt.class);
/* Initialize line maps for all types and gmms referenced by a model */ /* Initialize line maps for all types and gmms referenced by a model */
...@@ -163,14 +164,15 @@ public class Results { ...@@ -163,14 +164,15 @@ public class Results {
} }
totalLineMap.put(imt, lines); totalLineMap.put(imt, lines);
if (detailed) { if (sourceCurves) {
Map<SourceType, List<String>> typeLines = Maps.newEnumMap(SourceType.class); Map<SourceType, List<String>> typeLines = Maps.newEnumMap(SourceType.class);
for (SourceType type : demo.model.types()) { for (SourceType type : demo.model.types()) {
typeLines.put(type, Lists.newArrayList(lines)); typeLines.put(type, Lists.newArrayList(lines));
} }
typeLineMap.put(imt, typeLines); sourceLineMap.put(imt, typeLines);
}
if (gmmCurves) {
Map<Gmm, List<String>> gmmLines = Maps.newEnumMap(Gmm.class); Map<Gmm, List<String>> gmmLines = Maps.newEnumMap(Gmm.class);
for (Gmm gmm : gmmSet(demo.model)) { for (Gmm gmm : gmmSet(demo.model)) {
gmmLines.put(gmm, Lists.newArrayList(lines)); gmmLines.put(gmm, Lists.newArrayList(lines));
...@@ -188,10 +190,9 @@ public class Results { ...@@ -188,10 +190,9 @@ public class Results {
String.format("%.5f", hazard.site.location.lon()), String.format("%.5f", hazard.site.location.lon()),
String.format("%.5f", hazard.site.location.lat())); String.format("%.5f", hazard.site.location.lat()));
Map<Imt, Map<SourceType, XySequence>> curvesByType = detailed ? Map<Imt, Map<SourceType, XySequence>> curvesBySource =
curvesByType(hazard) : null; sourceCurves ? curvesBySource(hazard) : null;
Map<Imt, Map<Gmm, XySequence>> curvesByGmm = detailed ? Map<Imt, Map<Gmm, XySequence>> curvesByGmm = gmmCurves ? curvesByGmm(hazard) : null;
curvesByGmm(hazard) : null;
for (Entry<Imt, XySequence> imtEntry : hazard.totalCurves.entrySet()) { for (Entry<Imt, XySequence> imtEntry : hazard.totalCurves.entrySet()) {
Imt imt = imtEntry.getKey(); Imt imt = imtEntry.getKey();
...@@ -205,24 +206,25 @@ public class Results { ...@@ -205,24 +206,25 @@ public class Results {
imtEntry.getValue().yValues(), imtEntry.getValue().yValues(),
formatter)); formatter));
if (detailed) { if (sourceCurves) {
Map<SourceType, XySequence> sourceCurveMap = curvesBySource.get(imt);
Map<SourceType, XySequence> typeCurves = curvesByType.get(imt); for (Entry<SourceType, List<String>> typeEntry : sourceLineMap.get(imt)
for (Entry<SourceType, List<String>> typeEntry : typeLineMap.get(imt)
.entrySet()) { .entrySet()) {
SourceType type = typeEntry.getKey(); SourceType type = typeEntry.getKey();
String typeLine = typeCurves.containsKey(type) ? String typeLine = sourceCurveMap.containsKey(type)
toLine(locData, typeCurves.get(type).yValues(), formatter) : ? toLine(locData, sourceCurveMap.get(type).yValues(), formatter)
emptyLine; : emptyLine;
typeEntry.getValue().add(typeLine); typeEntry.getValue().add(typeLine);
} }
}
Map<Gmm, XySequence> gmmCurves = curvesByGmm.get(imt); if (gmmCurves) {
Map<Gmm, XySequence> gmmCurveMap = curvesByGmm.get(imt);
for (Entry<Gmm, List<String>> gmmEntry : gmmLineMap.get(imt).entrySet()) { for (Entry<Gmm, List<String>> gmmEntry : gmmLineMap.get(imt).entrySet()) {
Gmm gmm = gmmEntry.getKey(); Gmm gmm = gmmEntry.getKey();
String gmmLine = gmmCurves.containsKey(gmm) ? String gmmLine = gmmCurveMap.containsKey(gmm)
toLine(locData, gmmCurves.get(gmm).yValues(), formatter) : ? toLine(locData, gmmCurveMap.get(gmm).yValues(), formatter)
emptyLine; : emptyLine;
gmmEntry.getValue().add(gmmLine); gmmEntry.getValue().add(gmmLine);
} }
} }
...@@ -238,16 +240,18 @@ public class Results { ...@@ -238,16 +240,18 @@ public class Results {
Path totalFile = imtDir.resolve("total" + CURVE_FILE_SUFFIX); Path totalFile = imtDir.resolve("total" + CURVE_FILE_SUFFIX);
Files.write(totalFile, totalEntry.getValue(), US_ASCII, options); Files.write(totalFile, totalEntry.getValue(), US_ASCII, options);
if (detailed) { if (sourceCurves) {
Path typeDir = imtDir.resolve("source");
Path typeDir = imtDir.resolve("type");
Files.createDirectories(typeDir); Files.createDirectories(typeDir);
for (Entry<SourceType, List<String>> typeEntry : typeLineMap.get(imt).entrySet()) { for (Entry<SourceType, List<String>> typeEntry : sourceLineMap.get(imt)
.entrySet()) {
Path typeFile = typeDir.resolve( Path typeFile = typeDir.resolve(
typeEntry.getKey().toString() + CURVE_FILE_SUFFIX); typeEntry.getKey().toString() + CURVE_FILE_SUFFIX);
Files.write(typeFile, typeEntry.getValue(), US_ASCII, options); Files.write(typeFile, typeEntry.getValue(), US_ASCII, options);
} }
}
if (gmmCurves) {
Path gmmDir = imtDir.resolve("gmm"); Path gmmDir = imtDir.resolve("gmm");
Files.createDirectories(gmmDir); Files.createDirectories(gmmDir);
for (Entry<Gmm, List<String>> gmmEntry : gmmLineMap.get(imt).entrySet()) { for (Entry<Gmm, List<String>> gmmEntry : gmmLineMap.get(imt).entrySet()) {
...@@ -272,7 +276,7 @@ public class Results { ...@@ -272,7 +276,7 @@ public class Results {
* Derive maps of curves by source type for each Imt in a {@code Hazard} * Derive maps of curves by source type for each Imt in a {@code Hazard}
* result. * result.
*/ */
public static Map<Imt, Map<SourceType, XySequence>> curvesByType(Hazard hazard) { public static Map<Imt, Map<SourceType, XySequence>> curvesBySource(Hazard hazard) {
EnumMap<Imt, Map<SourceType, XySequence>> imtMap = Maps.newEnumMap(Imt.class); EnumMap<Imt, Map<SourceType, XySequence>> imtMap = Maps.newEnumMap(Imt.class);
...@@ -324,30 +328,33 @@ public class Results { ...@@ -324,30 +328,33 @@ public class Results {
return Sets.immutableEnumSet( return Sets.immutableEnumSet(
FluentIterable.from(sourceSets).transformAndConcat( FluentIterable.from(sourceSets).transformAndConcat(
new Function<SourceSet<? extends Source>, Set<Gmm>>() { new Function<SourceSet<? extends Source>, Set<Gmm>>() {
@Override public Set<Gmm> apply(SourceSet<? extends Source> sourceSet) { @Override
public Set<Gmm> apply(SourceSet<? extends Source> sourceSet) {
return sourceSet.groundMotionModels().gmms(); return sourceSet.groundMotionModels().gmms();
} }
}) }));
);
} }
/* Initalize a map of curves, one entry for each of the supplied enum keys. */ /*
* Initalize a map of curves, one entry for each of the supplied enum keys.
*/
private static <K extends Enum<K>> Map<K, XySequence> initCurves( private static <K extends Enum<K>> Map<K, XySequence> initCurves(
final Set<K> keys, final Set<K> keys,
final XySequence model) { final XySequence model) {
return Maps.immutableEnumMap( return Maps.immutableEnumMap(
FluentIterable.from(keys).toMap( FluentIterable.from(keys).toMap(
new Function<K, XySequence>() { new Function<K, XySequence>() {
@Override public XySequence apply(K key) { @Override
public XySequence apply(K key) {
return emptyCopyOf(model); return emptyCopyOf(model);
} }
}) }));
);
} }
private static final Function<HazardCurveSet, SourceSet<? extends Source>> CURVE_SET_TO_SOURCE_SET = private static final Function<HazardCurveSet, SourceSet<? extends Source>> CURVE_SET_TO_SOURCE_SET =
new Function<HazardCurveSet, SourceSet<? extends Source>>() { new Function<HazardCurveSet, SourceSet<? extends Source>>() {
@Override public SourceSet<? extends Source> apply(HazardCurveSet curves) { @Override
public SourceSet<? extends Source> apply(HazardCurveSet curves) {
return curves.sourceSet; return curves.sourceSet;
} }
}; };
......
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