Package gov.usgs.earthquake.nshmp.calc
Class Hazard
- java.lang.Object
-
- gov.usgs.earthquake.nshmp.calc.Hazard
-
public final class Hazard extends Object
The result of a hazard calculation. This container class is public for reference by external packages but is not directly modifiable, nor its fields accessible. TheHazardExport
class providesHazard
exporting and processing utilities.- Author:
- U.S. Geological Survey
- See Also:
HazardExport
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CalcConfig
config()
The original configuration used to generate this result.Map<Imt,XySequence>
curves()
Total mean hazard curves for eachImt
.Map<Imt,TreeMap<Double,MutableXySequence>>
magCurves()
Mean hazard curves at eachImt
decomposed by magnitude.String
toString()
-
-
-
Method Detail
-
curves
public Map<Imt,XySequence> curves()
Total mean hazard curves for eachImt
.
-
magCurves
public Map<Imt,TreeMap<Double,MutableXySequence>> magCurves()
Mean hazard curves at eachImt
decomposed by magnitude.
-
config
public CalcConfig config()
The original configuration used to generate this result.
-
-