openquake.commonlib package¶
calc module¶
-
class
openquake.commonlib.calc.
RuptureData
(trt, gsims)[source]¶ Bases:
object
Container for information about the ruptures of a given tectonic region type.
-
class
openquake.commonlib.calc.
RuptureSerializer
(datastore)[source]¶ Bases:
object
Serialize event based ruptures on an HDF5 files. Populate the datasets ruptures and sids.
-
classmethod
get_array_nbytes
(ebruptures)[source]¶ Convert a list of EBRuptures into a numpy composite array
-
pmfs_dt
= dtype([('serial', '<u4'), ('pmf', 'O')])¶
-
rupture_dt
= dtype([('serial', '<u4'), ('grp_id', '<u2'), ('code', 'u1'), ('eidx1', '<u4'), ('eidx2', '<u4'), ('pmfx', '<i4'), ('seed', '<u4'), ('mag', '<f4'), ('rake', '<f4'), ('occurrence_rate', '<f4'), ('hypo', [('lon', '<f4'), ('lat', '<f4'), ('depth', '<f4')]), ('sx', '<u2'), ('sy', 'u1'), ('sz', '<u2'), ('points', 'O')])¶
-
classmethod
-
openquake.commonlib.calc.
check_overflow
(calc)[source]¶ Parameters: calc – an event based calculator Raise a ValueError if the number of sites is larger than 65,536 or the number of IMTs is larger than 256 or the number of ruptures is larger than 4,294,967,296. The limits are due to the numpy dtype used to store the GMFs (gmv_dt). They could be relaxed in the future.
-
openquake.commonlib.calc.
compute_hazard_maps
(curves, imls, poes)[source]¶ Given a set of hazard curve poes, interpolate a hazard map at the specified
poe
.Parameters: - curves – 2D array of floats. Each row represents a curve, where the values
in the row are the PoEs (Probabilities of Exceedance) corresponding to
imls
. Each curve corresponds to a geographical location. - imls – Intensity Measure Levels associated with these hazard
curves
. Type should be an array-like of floats. - poes – Value(s) on which to interpolate a hazard map from the input
curves
. Can be an array-like or scalar value (for a single PoE).
Returns: An array of shape N x P, where N is the number of curves and P the number of poes.
- curves – 2D array of floats. Each row represents a curve, where the values
in the row are the PoEs (Probabilities of Exceedance) corresponding to
-
openquake.commonlib.calc.
convert_to_array
(pmap, nsites, imtls)[source]¶ Convert the probability map into a composite array with header of the form PGA-0.1, PGA-0.2 …
Parameters: - pmap – probability map
- nsites – total number of sites
- imtls – a DictArray with IMT and levels
Returns: a composite array of lenght nsites
-
openquake.commonlib.calc.
fix_minimum_intensity
(min_iml, imts)[source]¶ Parameters: - min_iml – a dictionary, possibly with a ‘default’ key
- imts – an ordered list of IMTs
Returns: a numpy array of intensities, one per IMT
Make sure the dictionary minimum_intensity (provided by the user in the job.ini file) is filled for all intensity measure types and has no key named ‘default’. Here is how it works:
>>> min_iml = {'PGA': 0.1, 'default': 0.05} >>> fix_minimum_intensity(min_iml, ['PGA', 'PGV']) array([0.1 , 0.05], dtype=float32) >>> sorted(min_iml.items()) [('PGA', 0.1), ('PGV', 0.05)]
-
openquake.commonlib.calc.
get_imts_periods
(imtls)[source]¶ Returns a list of IMT strings and a list of periods. There is an element for each IMT of type Spectral Acceleration, including PGA which is considered an alias for SA(0.0). The lists are sorted by period.
Parameters: imtls – a set of intensity measure type strings Returns: a list of IMT strings and a list of periods
-
openquake.commonlib.calc.
make_hmap
(pmap, imtls, poes)[source]¶ Compute the hazard maps associated to the passed probability map.
Parameters: - pmap – hazard curves in the form of a ProbabilityMap
- imtls – DictArray with M intensity measure types
- poes – P PoEs where to compute the maps
Returns: a ProbabilityMap with size (N, M * P, 1)
-
openquake.commonlib.calc.
make_uhs
(pmap, imtls, poes, nsites)[source]¶ Make Uniform Hazard Spectra curves for each location.
It is assumed that the lons and lats for each of the maps are uniform.
Parameters: - pmap – a probability map of hazard curves
- imtls – a dictionary of intensity measure types and levels
- poes – a sequence of PoEs for the underlying hazard maps
Returns: an composite array containing nsites uniform hazard maps
hazard_writers module¶
Classes for serializing various NRML XML artifacts.
-
class
openquake.commonlib.hazard_writers.
BaseCurveWriter
(dest, **metadata)[source]¶ Bases:
object
Base class for curve writers.
Parameters: - dest – File path (including filename) or file-like object for results to be saved to.
- metadata –
The following keyword args are required:
- investigation_time: Investigation time (in years) defined in the calculation which produced these results.
The following are more or less optional (combinational rules noted below where applicable):
- statistics: ‘mean’ or ‘quantile’
- quantile_value: Only required if statistics = ‘quantile’.
- smlt_path: String representing the logic tree path which produced these curves. Only required for non-statistical curves.
- gsimlt_path: String represeting the GSIM logic tree path which produced these curves. Only required for non-statisical curves.
-
class
openquake.commonlib.hazard_writers.
DisaggXMLWriter
(dest, **metadata)[source]¶ Bases:
object
Parameters: - dest – File path (including filename) or file-like object for XML results to be saved to.
- metadata –
The following keyword args are required:
- investigation_time: Investigation time (in years) defined in the calculation which produced these results.
- imt: Intensity measure type used to compute these matrices.
- lon, lat: Longitude and latitude associated with these results.
The following attributes define dimension context for the result matrices:
- mag_bin_edges: List of magnitude bin edges (floats)
- dist_bin_edges: List of distance bin edges (floats)
- lon_bin_edges: List of longitude bin edges (floats)
- lat_bin_edges: List of latitude bin edges (floats)
- eps_bin_edges: List of epsilon bin edges (floats)
- tectonic_region_types: List of tectonic region types (strings)
- smlt_path: String representing the logic tree path which produced these results. Only required for non-statistical results.
- gsimlt_path: String represeting the GSIM logic tree path which produced these results. Only required for non-statistical results.
The following are optional, depending on the imt:
- sa_period: Only used with imt = ‘SA’.
- sa_damping: Only used with imt = ‘SA’.
-
BIN_EDGE_ATTR_MAP
= OrderedDict([('mag_bin_edges', 'magBinEdges'), ('dist_bin_edges', 'distBinEdges'), ('lon_bin_edges', 'lonBinEdges'), ('lat_bin_edges', 'latBinEdges'), ('eps_bin_edges', 'epsBinEdges'), ('tectonic_region_types', 'tectonicRegionTypes')])¶ Maps metadata keywords to XML attribute names for bin edge information passed to the constructor. The dict here is an OrderedDict so as to give consistent ordering of result attributes.
-
DIM_LABEL_TO_BIN_EDGE_MAP
= {'Lat': 'lat_bin_edges', 'Lon': 'lon_bin_edges', 'TRT': 'tectonic_region_types', 'Eps': 'eps_bin_edges', 'Mag': 'mag_bin_edges', 'Dist': 'dist_bin_edges'}¶
-
serialize
(data)[source]¶ Parameters: data – A sequence of data where each datum has the following attributes:
- matrix: N-dimensional numpy array containing the disaggregation histogram.
- dim_labels: A list of strings which label the dimensions of a
given histogram. For example, for a Magnitude-Distance-Epsilon
histogram, we would expect dim_labels to be
['Mag', 'Dist', 'Eps']
. - poe: The disaggregation Probability of Exceedance level for which these results were produced.
- iml: Intensity measure level, interpolated from the source hazard
curve at the given
poe
.
-
class
openquake.commonlib.hazard_writers.
EventBasedGMFXMLWriter
(dest, sm_lt_path, gsim_lt_path)[source]¶ Bases:
object
Parameters: - dest – File path (including filename) or a file-like object for XML results to be saved to.
- sm_lt_path (str) – Source model logic tree branch identifier of the logic tree realization which produced this collection of ground motion fields.
- gsim_lt_path – GSIM logic tree branch identifier of the logic tree realization which produced this collection of ground motion fields.
-
serialize
(data, fmt='%10.7E')[source]¶ Serialize a collection of ground motion fields to XML.
Parameters: data – An iterable of “GMF set” objects. Each “GMF set” object should:
- have an investigation_time attribute
- have an stochastic_event_set_id attribute
- be iterable, yielding a sequence of “GMF” objects
Each “GMF” object should:
- have an imt attribute
- have an sa_period attribute (only if imt is ‘SA’)
- have an sa_damping attribute (only if imt is ‘SA’)
- have a rupture_id attribute (to indicate which rupture contributed to this gmf)
- be iterable, yielding a sequence of “GMF node” objects
Each “GMF node” object should have:
- a gmv attribute (to indicate the ground motion value
- lon and lat attributes (to indicate the geographical location of the ground motion field)
-
class
openquake.commonlib.hazard_writers.
HazardCurveXMLWriter
(dest, **metadata)[source]¶ Bases:
openquake.commonlib.hazard_writers.BaseCurveWriter
Hazard Curve XML writer. See
BaseCurveWriter
for a list of general constructor inputs.- The following additional metadata params are required:
- imt: Intensity measure type used to compute these hazard curves.
- imls: Intensity measure levels, which represent the x-axis values of each curve.
- The following parameters are optional:
- sa_period: Only used with imt = ‘SA’.
- sa_damping: Only used with imt = ‘SA’.
-
add_hazard_curves
(root, metadata, data)[source]¶ Add hazard curves stored into data as child of the root element with metadata. See the documentation of the method serialize and the constructor for a description of data and metadata, respectively.
-
serialize
(data)[source]¶ Write a sequence of hazard curves to the specified file.
Parameters: data – Iterable of hazard curve data. Each datum must be an object with the following attributes:
- poes: A list of probability of exceedence values (floats).
- location: An object representing the location of the curve; must have x and y to represent lon and lat, respectively.
-
class
openquake.commonlib.hazard_writers.
HazardMapWriter
(dest, **metadata)[source]¶ Bases:
object
Parameters: - dest – File path (including filename) or a file-like object for results to be saved to.
- metadata –
The following keyword args are required:
- investigation_time: Investigation time (in years) defined in the calculation which produced these results.
- imt: Intensity measure type used to compute these hazard curves.
- poe: The Probability of Exceedance level for which this hazard map was produced.
The following are more or less optional (combinational rules noted below where applicable):
- statistics: ‘mean’ or ‘quantile’
- quantile_value: Only required if statistics = ‘quantile’.
- smlt_path: String representing the logic tree path which produced these curves. Only required for non-statistical curves.
- gsimlt_path: String represeting the GSIM logic tree path which produced these curves. Only required for non-statisical curves.
- sa_period: Only used with imt = ‘SA’.
- sa_damping: Only used with imt = ‘SA’.
-
class
openquake.commonlib.hazard_writers.
HazardMapXMLWriter
(dest, **metadata)[source]¶ Bases:
openquake.commonlib.hazard_writers.HazardMapWriter
NRML/XML implementation of a
HazardMapWriter
.See
HazardMapWriter
for information about constructor parameters.-
serialize
(data)[source]¶ Serialize hazard map data to XML.
See
HazardMapWriter.serialize()
for details about the expected input.
-
-
class
openquake.commonlib.hazard_writers.
SESXMLWriter
(dest)[source]¶ Bases:
object
Parameters: - dest – File path (including filename) or a file-like object for XML results to be saved to.
- sm_lt_path (str) – Source model logic tree branch identifier of the logic tree realization which produced this collection of stochastic event sets.
- gsim_lt_path – GSIM logic tree branch identifier of the logic tree realization which produced this collection of stochastic event sets.
-
serialize
(data, investigation_time)[source]¶ Serialize a collection of stochastic event sets to XML.
Parameters: - data –
A dictionary src_group_id -> list of
openquake.commonlib.calc.Rupture
objects. Each Rupture should have the following attributes:- rupid
- events_by_ses
- magnitude
- strike
- dip
- rake
- tectonic_region_type
- is_from_fault_source (a bool)
- is_multi_surface (a bool)
- lons
- lats
- depths
If is_from_fault_source is True, the rupture originated from a simple or complex fault sources. In this case, lons, lats, and depths should all be 2D arrays (of uniform shape). These coordinate triples represent nodes of the rupture mesh.
If is_from_fault_source is False, the rupture originated from a point or area source. In this case, the rupture is represented by a quadrilateral planar surface. This planar surface is defined by 3D vertices. In this case, the rupture should have the following attributes:
- top_left_corner
- top_right_corner
- bottom_right_corner
- bottom_left_corner
Each of these should be a triple of lon, lat, depth.
If is_multi_surface is True, the rupture originated from a multi-surface source. In this case, lons, lats, and depths should have uniform length. The length should be a multiple of 4, where each segment of 4 represents the corner points of a planar surface in the following order:
- top left
- top right
- bottom left
- bottom right
Each of these should be a triple of lon, lat, depth.
- investigation_time – Investigation time parameter specified in the job.ini
- data –
-
class
openquake.commonlib.hazard_writers.
UHSXMLWriter
(dest, **metadata)[source]¶ Bases:
openquake.commonlib.hazard_writers.BaseCurveWriter
UHS curve XML writer. See
BaseCurveWriter
for a list of general constructor inputs.- The following additional metadata params are required:
- poe: Probability of exceedance for which a given set of UHS have been
- computed
- periods: A list of SA (Spectral Acceleration) period values, sorted
- ascending order
-
serialize
(data)[source]¶ Write a sequence of uniform hazard spectra to the specified file.
Parameters: data – Iterable of UHS data. Each datum must be an object with the following attributes:
- imls: A sequence of Intensity Measure Levels
- location: An object representing the location of the curve; must have x and y to represent lon and lat, respectively.
-
openquake.commonlib.hazard_writers.
gen_gmfs
(gmf_set)[source]¶ Generate GMF nodes from a gmf_set :param gmf_set: a sequence of GMF objects with attributes imt, sa_period, sa_damping, rupture_id and containing a list of GMF nodes with attributes gmv and location. The nodes are sorted by lon/lat.
logictree module¶
Logic tree parser, verifier and processor. See specs at https://blueprints.launchpad.net/openquake-old/+spec/openquake-logic-tree-module
A logic tree object must be iterable and yielding realizations, i.e. objects with attributes value, weight, lt_path and ordinal.
-
class
openquake.commonlib.logictree.
Branch
(branch_id, weight, value)[source]¶ Bases:
object
Branch object, represents a
<logicTreeBranch />
element.Parameters: - branch_id – Value of
@branchID
attribute. - weight – Decimal value of weight assigned to the branch. A text node contents
of
<uncertaintyWeight />
child node. - value – The actual uncertainty parameter value. A text node contents
of
<uncertaintyModel />
child node. Type depends on the branchset’s uncertainty type.
- branch_id – Value of
-
class
openquake.commonlib.logictree.
BranchSet
(uncertainty_type, filters)[source]¶ Bases:
object
Branchset object, represents a
<logicTreeBranchSet />
element.Parameters: - uncertainty_type –
String value. According to the spec one of:
- gmpeModel
- Branches contain references to different GMPEs. Values are parsed
as strings and are supposed to be one of supported GMPEs. See list
at
GMPELogicTree
. - sourceModel
- Branches contain references to different PSHA source models. Values are treated as file names, relatively to base path.
- maxMagGRRelative
- Different values to add to Gutenberg-Richter (“GR”) maximum magnitude. Value should be interpretable as float.
- bGRRelative
- Values to add to GR “b” value. Parsed as float.
- maxMagGRAbsolute
- Values to replace GR maximum magnitude. Values expected to be lists of floats separated by space, one float for each GR MFD in a target source in order of appearance.
- abGRAbsolute
- Values to replace “a” and “b” values of GR MFD. Lists of pairs of floats, one pair for one GR MFD in a target source.
- incrementalMFDAbsolute
- Replaces an evenly discretized MFD with the values provided
- simpleFaultDipRelative
- Increases or decreases the angle of fault dip from that given in the original source model
- simpleFaultDipAbsolute
- Replaces the fault dip in the specified source(s)
- simpleFaultGeometryAbsolute
- Replaces the simple fault geometry (trace, upper seismogenic depth lower seismogenic depth and dip) of a given source with the values provided
- complexFaultGeometryAbsolute
- Replaces the complex fault geometry edges of a given source with the values provided
- characteristicFaultGeometryAbsolute
- Replaces the complex fault geometry surface of a given source with the values provided
- filters –
Dictionary, a set of filters to specify which sources should the uncertainty be applied to. Represented as branchset element’s attributes in xml:
- applyToSources
- The uncertainty should be applied only to specific sources. This filter is required for absolute uncertainties (also only one source can be used for those). Value should be the list of source ids. Can be used only in source model logic tree.
- applyToSourceType
- Can be used in the source model logic tree definition. Allows to specify to which source type (area, point, simple fault, complex fault) the uncertainty applies to.
- applyToTectonicRegionType
- Can be used in both the source model and GMPE logic trees. Allows to specify to which tectonic region type (Active Shallow Crust, Stable Shallow Crust, etc.) the uncertainty applies to. This filter is required for all branchsets in GMPE logic tree.
-
apply_uncertainty
(value, source)[source]¶ Apply this branchset’s uncertainty with value
value
to sourcesource
, if it passesfilters
.This method is not called for uncertainties of types “gmpeModel” and “sourceModel”.
Parameters: - value – The actual uncertainty value of
sampled
branch. Type depends on uncertainty type. - source – The opensha source data object.
Returns: None
, all changes are applied to MFD in place. Therefore all sources have to be reinstantiated after processing is done in order to sample the tree once again.- value – The actual uncertainty value of
-
enumerate_paths
()[source]¶ Generate all possible paths starting from this branch set.
Returns: Generator of two-item tuples. Each tuple contains weight of the path (calculated as a product of the weights of all path’s branches) and list of path’s Branch
objects. Total sum of all paths’ weights is 1.0
- uncertainty_type –
-
class
openquake.commonlib.logictree.
BranchTuple
(bset, id, uncertainty, weight, effective)¶ Bases:
tuple
-
bset
¶ Alias for field number 0
-
effective
¶ Alias for field number 4
-
id
¶ Alias for field number 1
-
uncertainty
¶ Alias for field number 2
-
weight
¶ Alias for field number 3
-
-
class
openquake.commonlib.logictree.
FakeSmlt
(filename, seed=0, num_samples=0)[source]¶ Bases:
object
A replacement for the SourceModelLogicTree class, to be used when there is a trivial source model logic tree. In practice, when source_model_logic_tree_file is missing but there is a source_model_file in the job.ini file.
-
class
openquake.commonlib.logictree.
GsimLogicTree
(fname, tectonic_region_types=['*'], ltnode=None)[source]¶ Bases:
object
A GsimLogicTree instance is an iterable yielding Realization tuples with attributes value, weight and lt_path, where value is a dictionary {trt: gsim}, weight is a number in the interval 0..1 and lt_path is a tuple with the branch ids of the given realization.
Parameters: - fname (str) – full path of the gsim_logic_tree file
- tectonic_region_types – a sequence of distinct tectonic region types
- ltnode – usually None, but it can also be a
openquake.hazardlib.nrml.Node
object describing the GSIM logic tree XML file, to avoid reparsing it
-
get_gsim_by_trt
(rlz, trt)[source]¶ Parameters: rlz – a logictree Realization Param: a tectonic region type string Returns: the GSIM string associated to the given realization
-
get_gsims
(trt, rlzs=None)[source]¶ Parameters: - trt – tectonic region type
- rlzs – a sequence of realization indices (or None)
Returns: sorted list of available GSIMs for that trt
-
get_num_branches
()[source]¶ Return the number of effective branches for branchset id, as a dictionary.
-
exception
openquake.commonlib.logictree.
LogicTreeError
(filename, message)[source]¶ Bases:
Exception
Base class for errors of loading, parsing and validation of logic trees.
Parameters: - filename – The name of the file which contains an error.
- message – The error message.
-
class
openquake.commonlib.logictree.
LtSourceModel
(names, weight, path, src_groups, num_gsim_paths, ordinal, samples)[source]¶ Bases:
object
A container of SourceGroup instances with some additional attributes describing the source model in the logic tree.
-
get_skeleton
()[source]¶ Return an empty copy of the source model, i.e. without sources, but with the proper attributes for each SourceGroup contained within.
-
name
¶ Compact representation for the names
-
num_sources
¶ Number of sources contained in the source model
-
-
openquake.commonlib.logictree.
MAX_SINT_32
= 2147483647¶ Maximum value for a seed number
-
openquake.commonlib.logictree.
MIN_SINT_32
= -2147483648¶ Minimum value for a seed number
-
class
openquake.commonlib.logictree.
Realization
(value, weight, lt_path, ordinal, lt_uid)¶ Bases:
tuple
-
lt_path
¶ Alias for field number 2
-
lt_uid
¶ Alias for field number 4
-
ordinal
¶ Alias for field number 3
-
uid
¶
-
value
¶ Alias for field number 0
-
weight
¶ Alias for field number 1
-
-
class
openquake.commonlib.logictree.
SourceModelLogicTree
(filename, validate=True, seed=0, num_samples=0)[source]¶ Bases:
object
Source model logic tree parser.
Parameters: - filename – Full pathname of logic tree file
- validate – Boolean indicating whether or not the tree should be validated
while parsed. This should be set to
True
on initial load of the logic tree (before importing it to the database) and toFalse
on workers side (when loaded from the database).
Raises: ValidationError – If logic tree file has a logic error, which can not be prevented by xml schema rules (like referencing sources with missing id).
-
FILTERS
= ('applyToTectonicRegionType', 'applyToSources', 'applyToSourceType')¶
-
SOURCE_TYPES
= ('point', 'area', 'complexFault', 'simpleFault', 'characteristicFault')¶
-
apply_branchset
(branchset_node, branchset)[source]¶ See superclass’ method for description and signature specification.
Parses branchset node’s attribute
@applyToBranches
to apply following branchests to preceding branches selectively. Branching level can have more than one branchset exactly for this: different branchsets can apply to different open ends.Checks that branchset tries to be applied only to branches on previous branching level which do not have a child branchset yet.
-
collect_source_model_data
(source_model)[source]¶ Parse source model file and collect information about source ids, source types and tectonic region types available in it. That information is used then for
validate_filters()
andvalidate_uncertainty_value()
.
-
gen_source_models
(gsim_lt)[source]¶ Yield empty LtSourceModel instances (one per effective realization)
-
make_apply_uncertainties
(branch_ids)[source]¶ Parse the path through the source model logic tree and return “apply uncertainties” function.
Parameters: branch_ids – List of string identifiers of branches, representing the path through source model logic tree. Returns: Function to be applied to all the sources as they get read from the database and converted to hazardlib representation. Function takes one argument, that is the hazardlib source object, and applies uncertainties to it in-place.
-
parse_branches
(branchset_node, branchset, validate)[source]¶ Create and attach branches at
branchset_node
tobranchset
.Parameters: - branchset_node – Same as for
parse_branchset()
. - branchset – An instance of
BranchSet
. - validate – Whether or not branches’ uncertainty values should be validated.
Checks that each branch has
valid
value, unique id and that all branches have total weight of 1.0.Returns: None
, all branches are attached to provided branchset.- branchset_node – Same as for
-
parse_branchinglevel
(branchinglevel_node, depth, validate)[source]¶ Parse one branching level.
Parameters: - branchinglevel_node –
etree.Element
object with tag “logicTreeBranchingLevel”. - depth – The sequential number of this branching level, based on 0.
- validate – Whether or not the branching level, its branchsets and their branches should be validated.
Enumerates children branchsets and call
parse_branchset()
,validate_branchset()
,parse_branches()
and finallyapply_branchset()
for each.Keeps track of “open ends” – the set of branches that don’t have any child branchset on this step of execution. After processing of every branching level only those branches that are listed in it can have child branchsets (if there is one on the next level).
- branchinglevel_node –
-
parse_branchset
(branchset_node, depth, number, validate)[source]¶ Create
BranchSet
object using data inbranchset_node
.Parameters: - branchset_node –
etree.Element
object with tag “logicTreeBranchSet”. - depth – The sequential number of branchset’s branching level, based on 0.
- number – Index number of this branchset inside branching level, based on 0.
- validate – Whether or not filters defined in branchset and the branchset itself should be validated.
Returns: An instance of
BranchSet
with filters applied but with no branches (they’re attached inparse_branches()
).- branchset_node –
-
parse_filters
(branchset_node, uncertainty_type, filters)[source]¶ See superclass’ method for description and signature specification.
Converts “applyToSources” filter value by just splitting it to a list.
-
parse_tree
(tree_node, validate)[source]¶ Parse the whole tree and point
root_branchset
attribute to the tree’s root.
-
parse_uncertainty_value
(node, branchset)[source]¶ See superclass’ method for description and signature specification.
Doesn’t change source model file name, converts other values to either pair of floats or a single float depending on uncertainty type.
-
sample_path
(seed)[source]¶ Return the model name and a list of branch ids.
Parameters: seed – the seed used for the sampling
-
validate_branchset
(branchset_node, depth, number, branchset)[source]¶ See superclass’ method for description and signature specification.
Checks that the following conditions are met:
- First branching level must contain exactly one branchset, which must be of type “sourceModel”.
- All other branchsets must not be of type “sourceModel” or “gmpeModel”.
-
validate_filters
(branchset_node, uncertainty_type, filters)[source]¶ See superclass’ method for description and signature specification.
Checks that the following conditions are met:
- “sourceModel” uncertainties can not have filters.
- Absolute uncertainties must have only one filter – “applyToSources”, with only one source id.
- All other uncertainty types can have either no or one filter.
- Filter “applyToSources” must mention only source ids that exist in source models.
- Filter “applyToTectonicRegionType” must mention only tectonic region types that exist in source models.
- Filter “applyToSourceType” must mention only source types that exist in source models.
-
validate_uncertainty_value
(node, branchset)[source]¶ See superclass’ method for description and signature specification.
Checks that the following conditions are met:
- For uncertainty of type “sourceModel”: referenced file must exist
and be readable. This is checked in
collect_source_model_data()
along with saving the source model information. - For uncertainty of type “abGRAbsolute”: value should be two float values.
- For both absolute uncertainties: the source (only one) must be referenced in branchset’s filter “applyToSources”.
- For all other cases: value should be a single float value.
- For uncertainty of type “sourceModel”: referenced file must exist
and be readable. This is checked in
-
exception
openquake.commonlib.logictree.
ValidationError
(node, *args, **kwargs)[source]¶ Bases:
openquake.commonlib.logictree.LogicTreeError
Logic tree file contains a logic error.
Parameters: node – XML node object that causes fail. Used to determine the affected line number. All other constructor parameters are passed to
superclass'
constructor.
-
openquake.commonlib.logictree.
get_effective_rlzs
(rlzs)[source]¶ Group together realizations with the same unique identifier (uid) and yield the first representative of each group.
-
openquake.commonlib.logictree.
sample
(weighted_objects, num_samples, seed)[source]¶ Take random samples of a sequence of weighted objects
Parameters: - weighted_objects – A finite sequence of objects with a .weight attribute. The weights must sum up to 1.
- num_samples – The number of samples to return
- seed – A random seed
Returns: A subsequence of the original sequence with num_samples elements
logs module¶
Set up some system-wide loggers
-
class
openquake.commonlib.logs.
LogDatabaseHandler
(job_id)[source]¶ Bases:
logging.Handler
Log stream handler
-
class
openquake.commonlib.logs.
LogFileHandler
(job_id, log_file)[source]¶ Bases:
logging.FileHandler
Log file handler
-
class
openquake.commonlib.logs.
LogStreamHandler
(job_id)[source]¶ Bases:
logging.StreamHandler
Log stream handler
-
openquake.commonlib.logs.
dbcmd
(action, *args)[source]¶ A dispatcher to the database server.
Parameters: - action – database action to perform
- args – arguments
-
openquake.commonlib.logs.
handle
(job_id, log_level='info', log_file=None)[source]¶ Context manager adding and removing log handlers.
Parameters: - job_id – ID of the current job
- log_level – one of debug, info, warn, error, critical
- log_file – log file path (if None, logs on stdout only)
oqvalidation module¶
-
class
openquake.commonlib.oqvalidation.
OqParam
(**names_vals)[source]¶ Bases:
openquake.hazardlib.valid.ParamSet
-
all_cost_types
¶ Return the cost types of the computation (including occupants if it is there) in order.
-
area_source_discretization
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
asset_correlation
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
asset_hazard_distance
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
asset_life_expectancy
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
asset_loss_table
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
avg_losses
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
base_path
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
calculation_mode
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
compare_with_classical
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
complex_fault_mesh_spacing
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
concurrent_tasks
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
conditional_loss_poes
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
continuous_fragility_discretization
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
coordinate_bin_width
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
cross_correlation
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
description
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
disagg_by_src
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
disagg_outputs
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
distance_bin_width
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
export_dir
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
export_multi_curves
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
exports
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
file_type
¶
-
filter_distance
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
get_correl_model
()[source]¶ Return a correlation object. See
openquake.hazardlib.correlation
for more info.
-
ground_motion_correlation_model
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
ground_motion_correlation_params
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
ground_motion_fields
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
gsim
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
hazard_calculation_id
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
hazard_curves_from_gmfs
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
hazard_maps
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
hazard_output_id
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
hazard_stats
()[source]¶ Return a list of item with the statistical functions defined for the hazard calculation
-
hypocenter
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
ignore_covs
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
ignore_missing_costs
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
iml_disagg
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
imtls
¶ Returns an OrderedDict with the risk intensity measure types and levels, if given, or the hazard ones.
-
inputs
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
insured_losses
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
intensity_measure_types
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
intensity_measure_types_and_levels
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
interest_rate
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
investigation_time
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
is_valid_complex_fault_mesh_spacing
()[source]¶ The complex_fault_mesh_spacing parameter can be None only if rupture_mesh_spacing is set. In that case it is identified with it.
-
is_valid_export_dir
()[source]¶ The export_dir parameter must refer to a directory, and the user must have the permission to write on it.
-
is_valid_geometry
()[source]¶ It is possible to infer the geometry only if exactly one of sites, sites_csv, hazard_curves_csv, gmfs_csv, region is set. You did set more than one, or nothing.
-
is_valid_inputs
()[source]¶ Invalid calculation_mode=”{calculation_mode}” or missing fragility_file/vulnerability_file in the .ini file.
-
is_valid_intensity_measure_levels
()[source]¶ In order to compute hazard curves, intensity_measure_types_and_levels must be set or extracted from the risk models.
-
is_valid_intensity_measure_types
()[source]¶ If the IMTs and levels are extracted from the risk models, they must not be set directly. Moreover, if intensity_measure_types_and_levels is set directly, intensity_measure_types must not be set.
-
is_valid_poes
()[source]¶ When computing hazard maps and/or uniform hazard spectra, the poes list must be non-empty.
-
is_valid_sites_disagg
()[source]¶ The option sites_disagg (when given) requires specific_assets to be set.
-
is_valid_specific_assets
()[source]¶ Read the special assets from the parameters specific_assets or specific_assets_csv, if present. You cannot have both. The concept is meaninful only for risk calculators.
-
is_valid_truncation_level_disaggregation
()[source]¶ Truncation level must be set for disaggregation calculations
-
job_type
¶ ‘hazard’ or ‘risk’
-
loss_dt
(dtype=<class 'numpy.float32'>)[source]¶ Return a composite dtype based on the loss types, including occupants
-
loss_dt_list
(dtype=<class 'numpy.float32'>)[source]¶ Return a data type list [(loss_name, dtype), …]
-
lrem_steps_per_interval
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
lti
¶ Dictionary extended_loss_type -> extended_loss_type index
-
mag_bin_width
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
master_seed
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
max_hazard_curves
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
max_loss_curves
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
max_site_model_distance
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
maximum_distance
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
mean_hazard_curves
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
mean_loss_curves
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
minimum_intensity
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
num_epsilon_bins
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
number_of_ground_motion_fields
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
number_of_logic_tree_samples
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
optimize_same_id_sources
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
poes
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
poes_disagg
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
prefilter_sources
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
quantile_hazard_curves
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
quantile_loss_curves
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
random_seed
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
reference_backarc
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
reference_depth_to_1pt0km_per_sec
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
reference_depth_to_2pt5km_per_sec
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
reference_vs30_type
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
reference_vs30_value
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
region
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
region_grid_spacing
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
return_periods
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
risk_files
¶
-
risk_imtls
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
risk_investigation_time
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
risk_stats
()[source]¶ Return a list of items with the statistical functions defined for the risk calculation
-
rupture_mesh_spacing
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
ruptures_per_block
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
save_ruptures
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
ses_per_logic_tree_path
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
ses_ratio
¶ The ratio
risk_investigation_time / investigation_time / ses_per_logic_tree_path
-
ses_seed
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
set_risk_imtls
(risk_models)[source]¶ Parameters: risk_models – a dictionary taxonomy -> loss_type -> risk_function Set the attribute risk_imtls.
-
shakemap_id
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
site_effects
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
siteparam
= {'backarc': 'reference_backarc', 'z1pt0': 'reference_depth_to_1pt0km_per_sec', 'vs30': 'reference_vs30_value', 'vs30measured': 'reference_vs30_type', 'z2pt5': 'reference_depth_to_2pt5km_per_sec'}¶
-
sites
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
sites_disagg
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
sites_slice
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
sm_lt_path
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
specific_assets
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
steps_per_interval
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
taxonomies_from_model
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
time_event
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
truncation_level
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
tses
¶ Return the total time as investigation_time * ses_per_logic_tree_path * (number_of_logic_tree_samples or 1)
-
uniform_hazard_spectra
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
width_of_mfd_bin
¶ A descriptor for validated parameters with a default, to be used as attributes in ParamSet objects.
Parameters: - validator – the validator
- default – the default value
-
readinput module¶
-
exception
openquake.commonlib.readinput.
DuplicatedPoint
[source]¶ Bases:
Exception
Raised when reading a CSV file with duplicated (lon, lat) pairs
-
class
openquake.commonlib.readinput.
Site
(sid, lon, lat)¶ Bases:
tuple
-
lat
¶ Alias for field number 2
-
lon
¶ Alias for field number 1
-
sid
¶ Alias for field number 0
-
-
openquake.commonlib.readinput.
collect_files
(dirpath, cond=<function <lambda>>)[source]¶ Recursively collect the files contained inside dirpath.
Parameters: - dirpath – path to a readable directory
- cond – condition on the path to collect the file
-
openquake.commonlib.readinput.
extract_from_zip
(path, candidates)[source]¶ Given a zip archive and a function to detect the presence of a given filename, unzip the archive into a temporary directory and return the full path of the file. Raise an IOError if the file cannot be found within the archive.
Parameters: - path – pathname of the archive
- candidates – list of names to search for
-
openquake.commonlib.readinput.
gen_sm_paths
(smlt)[source]¶ Yields the path names for the source models listed in the smlt file, a block at the time.
-
openquake.commonlib.readinput.
get_checksum32
(oqparam)[source]¶ Build an unsigned 32 bit integer from the input files of the calculation
-
openquake.commonlib.readinput.
get_composite_source_model
(oqparam, in_memory=True)[source]¶ Parse the XML and build a complete composite source model in memory.
Parameters: - oqparam – an
openquake.commonlib.oqvalidation.OqParam
instance - in_memory – if False, just parse the XML without instantiating the sources
- oqparam – an
-
openquake.commonlib.readinput.
get_cost_calculator
(oqparam)[source]¶ Read the first lines of the exposure file and infers the cost calculator
-
openquake.commonlib.readinput.
get_exposure
(oqparam)[source]¶ Read the full exposure in memory and build a list of
openquake.risklib.asset.Asset
instances.Parameters: oqparam – an openquake.commonlib.oqvalidation.OqParam
instanceReturns: an Exposure
instance or a compatible AssetCollection
-
openquake.commonlib.readinput.
get_gsim_lt
(oqparam, trts=['*'])[source]¶ Parameters: - oqparam – an
openquake.commonlib.oqvalidation.OqParam
instance - trts – a sequence of tectonic region types as strings; trts=[‘*’] means that there is no filtering
Returns: a GsimLogicTree instance obtained by filtering on the provided tectonic region types.
- oqparam – an
-
openquake.commonlib.readinput.
get_gsims
(oqparam)[source]¶ Return an ordered list of GSIM instances from the gsim name in the configuration file or from the gsim logic tree file.
Parameters: oqparam – an openquake.commonlib.oqvalidation.OqParam
instance
-
openquake.commonlib.readinput.
get_imts
(oqparam)[source]¶ Return a sorted list of IMTs as hazardlib objects
-
openquake.commonlib.readinput.
get_mesh
(oqparam)[source]¶ Extract the mesh of points to compute from the sites, the sites_csv, or the region.
Parameters: oqparam – an openquake.commonlib.oqvalidation.OqParam
instance
-
openquake.commonlib.readinput.
get_mesh_csvdata
(csvfile, imts, num_values, validvalues)[source]¶ Read CSV data in the format IMT lon lat value1 … valueN.
Parameters: - csvfile – a file or file-like object with the CSV data
- imts – a list of intensity measure types
- num_values – dictionary with the number of expected values per IMT
- validvalues – validation function for the values
Returns: the mesh of points and the data as a dictionary imt -> array of curves for each site
-
openquake.commonlib.readinput.
get_mesh_hcurves
(oqparam)[source]¶ Read CSV data in the format lon lat, v1-vN, w1-wN, ….
Parameters: oqparam – an openquake.commonlib.oqvalidation.OqParam
instanceReturns: the mesh of points and the data as a dictionary imt -> array of curves for each site
-
openquake.commonlib.readinput.
get_oqparam
(job_ini, pkg=None, calculators=None, hc_id=None, validate=1)[source]¶ Parse a dictionary of parameters from an INI-style config file.
Parameters: - job_ini – Path to configuration file/archive or dictionary of parameters
- pkg – Python package where to find the configuration file (optional)
- calculators – Sequence of calculator names (optional) used to restrict the valid choices for calculation_mode
- hc_id – Not None only when called from a post calculation
- validate – Flag. By default it is true and the parameters are validated
Returns: An
openquake.commonlib.oqvalidation.OqParam
instance containing the validate and casted parameters/values parsed from the job.ini file as well as a subdictionary ‘inputs’ containing absolute paths to all of the files referenced in the job.ini, keyed by the parameter name.
-
openquake.commonlib.readinput.
get_params
(job_inis, **kw)[source]¶ Parse one or more INI-style config files.
Parameters: - job_inis – List of configuration files (or list containing a single zip archive)
- kw – Optionally override some parameters
Returns: A dictionary of parameters
-
openquake.commonlib.readinput.
get_pmap_from_csv
(oqparam, fname)[source]¶ Parameters: - oqparam – an
openquake.commonlib.oqvalidation.OqParam
instance - fname – a .txt file with format IMT lon lat poe1 … poeN
Returns: the site mesh and the hazard curves read by the .txt file
- oqparam – an
-
openquake.commonlib.readinput.
get_pmap_from_nrml
(oqparam, fname)[source]¶ Parameters: - oqparam – an
openquake.commonlib.oqvalidation.OqParam
instance - fname – an XML file containing hazard curves
Returns: site mesh, curve array
- oqparam – an
-
openquake.commonlib.readinput.
get_risk_model
(oqparam)[source]¶ - Return a
openquake.risklib.riskinput.CompositeRiskModel
instanceParameters: oqparam – an openquake.commonlib.oqvalidation.OqParam
instance
-
openquake.commonlib.readinput.
get_rlzs_by_gsim
(oqparam)[source]¶ Return an ordered dictionary gsim -> [realization index]. Work for gsim logic trees with a single tectonic region type.
-
openquake.commonlib.readinput.
get_rupture
(oqparam)[source]¶ Read the rupture_model file and by filter the site collection
Parameters: oqparam – an openquake.commonlib.oqvalidation.OqParam
instanceReturns: an hazardlib rupture
-
openquake.commonlib.readinput.
get_scenario_from_nrml
(oqparam, fname)[source]¶ Parameters: - oqparam – an
openquake.commonlib.oqvalidation.OqParam
instance - fname – the NRML files containing the GMFs
Returns: a pair (eids, gmf array)
- oqparam – an
-
openquake.commonlib.readinput.
get_site_collection
(oqparam)[source]¶ Returns a SiteCollection instance by looking at the points and the site model defined by the configuration parameters.
Parameters: oqparam – an openquake.commonlib.oqvalidation.OqParam
instance
-
openquake.commonlib.readinput.
get_site_model
(oqparam)[source]¶ Convert the NRML file into an array of site parameters.
Parameters: oqparam – an openquake.commonlib.oqvalidation.OqParam
instanceReturns: an array with fields lon, lat, vs30, measured, z1pt0, z2pt5, backarc
-
openquake.commonlib.readinput.
get_sitecol_assetcol
(oqparam, haz_sitecol)[source]¶ Parameters: - oqparam – calculation parameters
- haz_sitecol – the hazard site collection
Returns: (site collection, asset collection) instances
-
openquake.commonlib.readinput.
get_source_model_lt
(oqparam)[source]¶ Parameters: oqparam – an openquake.commonlib.oqvalidation.OqParam
instanceReturns: a openquake.commonlib.logictree.SourceModelLogicTree
instance
-
openquake.commonlib.readinput.
get_source_models
(oqparam, gsim_lt, source_model_lt, in_memory=True)[source]¶ Build all the source models generated by the logic tree.
Parameters: - oqparam – an
openquake.commonlib.oqvalidation.OqParam
instance - gsim_lt – a
openquake.commonlib.logictree.GsimLogicTree
instance - source_model_lt – a
openquake.commonlib.logictree.SourceModelLogicTree
instance - in_memory – if True, keep in memory the sources, else just collect the TRTs
Returns: an iterator over
openquake.commonlib.logictree.LtSourceModel
tuples- oqparam – an
riskmodels module¶
source module¶
-
class
openquake.commonlib.source.
CompositeSourceModel
(gsim_lt, source_model_lt, source_models, optimize_same_id)[source]¶ Bases:
collections.abc.Sequence
Parameters: - source_model_lt – a
openquake.commonlib.logictree.SourceModelLogicTree
instance - source_models – a list of
openquake.hazardlib.sourceconverter.SourceModel
tuples
-
check_dupl_sources
()[source]¶ Extracts duplicated sources, i.e. sources with the same source_id in different source groups. Raise an exception if there are sources with the same ID which are not duplicated.
Returns: a list of list of sources, ordered by source_id
-
filter
(src_filter, monitor=<Monitor dummy>)[source]¶ Generate a new CompositeSourceModel by filtering the sources on the given site collection.
Parameters: - src_filter – a SourceFilter instance
- monitor – a Monitor instance
Returns: a new CompositeSourceModel instance
-
get_maxweight
(weight, concurrent_tasks, minweight=100)[source]¶ Return an appropriate maxweight for use in the block_splitter
-
get_model
(sm_id)[source]¶ Extract a CompositeSourceModel instance containing the single model of index sm_id.
-
get_nonparametric_sources
()[source]¶ Returns: list of non parametric sources in the composite source model
-
get_sources
(kind='all')[source]¶ Extract the sources contained in the source models by optionally filtering and splitting them, depending on the passed parameter.
-
get_sources_by_trt
()[source]¶ Build a dictionary TRT string -> sources. Sources of kind “mutex” (if any) are silently discarded.
-
get_weight
(weight)[source]¶ Parameters: weight – source weight function Returns: total weight of the source model
-
init_serials
()[source]¶ Generate unique seeds for each rupture with numpy.arange. This should be called only in event based calculators
-
split_all
()[source]¶ Split all sources in the composite source model.
Parameters: samples_factor – if given, sample the sources Returns: a dictionary source_id -> split_time
-
src_groups
¶ Yields the SourceGroups inside each source model.
- source_model_lt – a
-
class
openquake.commonlib.source.
CompositionInfo
(gsim_lt, seed, num_samples, source_models, totweight=0)[source]¶ Bases:
object
An object to collect information about the composition of a composite source model.
Parameters: - source_model_lt – a SourceModelLogicTree object
- source_models – a list of LtSourceModel instances
-
classmethod
fake
(gsimlt=None)[source]¶ Returns: a fake CompositionInfo instance with the given gsim logic tree object; if None, builds automatically a fake gsim logic tree
-
get_info
(sm_id)[source]¶ Extract a CompositionInfo instance containing the single model of index sm_id.
-
get_num_rlzs
(source_model=None)[source]¶ Parameters: source_model – a LtSourceModel instance (or None) Returns: the number of realizations per source model (or all)
-
get_rlzs_assoc
(sm_lt_path=None, trts=None)[source]¶ Parameters: - sm_lt_path – logic tree path tuple used to select a source model
- trts – tectonic region types to accept
-
gsim_rlzs
¶ Build and cache the gsim logic tree realizations
-
rlzs
¶ Returns: an array of realizations
-
class
openquake.commonlib.source.
LtRealization
(ordinal, sm_lt_path, gsim_rlz, weight)[source]¶ Bases:
object
Composite realization build on top of a source model realization and a GSIM realization.
-
gsim_lt_path
¶
-
uid
¶ An unique identifier for effective realizations
-
-
class
openquake.commonlib.source.
RlzsAssoc
(csm_info)[source]¶ Bases:
object
Realization association class. It should not be instantiated directly, but only via the method :meth: openquake.commonlib.source.CompositeSourceModel.get_rlzs_assoc.
Attr realizations: list of LtRealization
objectsAttr gsim_by_trt: list of dictionaries {trt: gsim} Attr rlzs_assoc: dictionary {src_group_id, gsim: rlzs} Attr rlzs_by_smodel: list of lists of realizations For instance, for the non-trivial logic tree in
openquake.qa_tests_data.classical.case_15
, which has 4 tectonic region types and 4 + 2 + 2 realizations, there are the following associations:(0, ‘BooreAtkinson2008()’) [‘#0-SM1-BA2008_C2003’, ‘#1-SM1-BA2008_T2002’] (0, ‘CampbellBozorgnia2008()’) [‘#2-SM1-CB2008_C2003’, ‘#3-SM1-CB2008_T2002’] (1, ‘Campbell2003()’) [‘#0-SM1-BA2008_C2003’, ‘#2-SM1-CB2008_C2003’] (1, ‘ToroEtAl2002()’) [‘#1-SM1-BA2008_T2002’, ‘#3-SM1-CB2008_T2002’] (2, ‘BooreAtkinson2008()’) [‘#4-SM2_a3pt2b0pt8-BA2008’] (2, ‘CampbellBozorgnia2008()’) [‘#5-SM2_a3pt2b0pt8-CB2008’] (3, ‘BooreAtkinson2008()’) [‘#6-SM2_a3b1-BA2008’] (3, ‘CampbellBozorgnia2008()’) [‘#7-SM2_a3b1-CB2008’]
-
combine_pmaps
(pmap_by_grp)[source]¶ Parameters: pmap_by_grp – dictionary group string -> probability map Returns: a list of probability maps, one per realization
-
compute_pmap_stats
(pmap_by_grp, statfuncs)[source]¶ Parameters: - pmap_by_grp – dictionary group string -> probability map
- statfuncs – a list of statistical functions
Returns: a probability map containing all statistics
-
get_rlzs_by_gsim
(trt_or_grp_id, sm_id=None)[source]¶ Parameters: - trt_or_grp_id – a tectonic region type or a source group ID
- sm_id – source model ordinal (or None)
Returns: a dictionary gsim -> rlzs
-
realizations
¶ Flat list with all the realizations
-
weights
¶ Array with the weight of the realizations
-
-
class
openquake.commonlib.source.
SourceInfo
(src, calc_time=0, split_time=0, num_split=0)[source]¶ Bases:
object
-
dt
= dtype([('source_id', 'S100'), ('source_class', 'S30'), ('num_ruptures', '<u4'), ('calc_time', '<f4'), ('split_time', '<f4'), ('num_sites', '<f4'), ('num_split', '<u4'), ('events', '<u4')])¶
-
-
openquake.commonlib.source.
accept_path
(path, ref_path)[source]¶ Parameters: - path – a logic tree path (list or tuple of strings)
- ref_path – reference logic tree path
Returns: True if path is consistent with ref_path, False otherwise
>>> accept_path(['SM2'], ('SM2', 'a3b1')) False >>> accept_path(['SM2', '@'], ('SM2', 'a3b1')) True >>> accept_path(['@', 'a3b1'], ('SM2', 'a3b1')) True >>> accept_path('@@', ('SM2', 'a3b1')) True
-
openquake.commonlib.source.
collect_source_model_paths
(smlt)[source]¶ Given a path to a source model logic tree or a file-like, collect all of the soft-linked path names to the source models it contains and return them as a uniquified list (no duplicates).
Parameters: smlt – source model logic tree file
-
openquake.commonlib.source.
get_totrup
(data)[source]¶ Parameters: data – a record with a field totrup, possibily missing
util module¶
-
openquake.commonlib.util.
compose_arrays
(a1, a2, firstfield='etag')[source]¶ Compose composite arrays by generating an extended datatype containing all the fields. The two arrays must have the same length.
-
openquake.commonlib.util.
get_assets
(dstore)[source]¶ Parameters: dstore – a datastore with keys ‘assetcol’ Returns: an array of records (asset_ref, tag1, …, tagN, lon, lat)
-
openquake.commonlib.util.
max_rel_diff
(curve_ref, curve, min_value=0.01)[source]¶ Compute the maximum relative difference between two curves. Only values greather or equal than the min_value are considered.
>>> curve_ref = [0.01, 0.02, 0.03, 0.05, 1.0] >>> curve = [0.011, 0.021, 0.031, 0.051, 1.0] >>> round(max_rel_diff(curve_ref, curve), 2) 0.1
-
openquake.commonlib.util.
max_rel_diff_index
(curve_ref, curve, min_value=0.01)[source]¶ Compute the maximum relative difference between two sets of curves. Only values greather or equal than the min_value are considered. Return both the maximum difference and its location (array index).
>>> curve_refs = [[0.01, 0.02, 0.03, 0.05], [0.01, 0.02, 0.04, 0.06]] >>> curves = [[0.011, 0.021, 0.031, 0.051], [0.012, 0.022, 0.032, 0.051]] >>> max_rel_diff_index(curve_refs, curves) (0.2, 1)
-
openquake.commonlib.util.
reader
(func)[source]¶ Decorator used to mark functions that require read access to the file system.
-
openquake.commonlib.util.
rmsep
(array_ref, array, min_value=0.01)[source]¶ Root Mean Square Error Percentage for two arrays.
Parameters: - array_ref – reference array
- array – another array
- min_value – compare only the elements larger than min_value
Returns: the relative distance between the arrays
>>> curve_ref = numpy.array([[0.01, 0.02, 0.03, 0.05], ... [0.01, 0.02, 0.04, 0.06]]) >>> curve = numpy.array([[0.011, 0.021, 0.031, 0.051], ... [0.012, 0.022, 0.032, 0.051]]) >>> str(round(rmsep(curve_ref, curve), 5)) '0.11292'
Returns: True if a shared_dir has been set in openquake.cfg, else False
writers module¶
-
class
openquake.commonlib.writers.
CsvWriter
(sep=', ', fmt='%12.8E')[source]¶ Bases:
object
Class used in the exporters to save a bunch of CSV files
-
class
openquake.commonlib.writers.
HeaderTranslator
(*regexps)[source]¶ Bases:
object
An utility to convert the headers in CSV files. When reading, the column names are converted into column descriptions with the method .read, when writing column descriptions are converted into column names with the method .write. The usage is
>>> htranslator = HeaderTranslator( ... '(asset_ref):\|S100', ... '(eid):uint32', ... '(taxonomy):object') >>> htranslator.write('asset_ref:|S100 value:5'.split()) ['asset_ref', 'value:5'] >>> htranslator.read('asset_ref value:5'.split()) ['asset_ref:|S100', 'value:5']
-
openquake.commonlib.writers.
build_header
(dtype)[source]¶ Convert a numpy nested dtype into a list of strings suitable as header of csv file.
>>> imt_dt = numpy.dtype([('PGA', float, 3), ('PGV', float, 4)]) >>> build_header(imt_dt) ['PGA:3', 'PGV:4'] >>> gmf_dt = numpy.dtype([('A', imt_dt), ('B', imt_dt), ... ('idx', numpy.uint32)]) >>> build_header(gmf_dt) ['A~PGA:3', 'A~PGV:4', 'B~PGA:3', 'B~PGV:4', 'idx:uint32']
-
openquake.commonlib.writers.
castable_to_int
(s)[source]¶ Return True if the string s can be interpreted as an integer
-
openquake.commonlib.writers.
extract_from
(data, fields)[source]¶ Extract data from numpy arrays with nested records.
>>> imt_dt = numpy.dtype([('PGA', float, 3), ('PGV', float, 4)]) >>> a = numpy.array([([1, 2, 3], [4, 5, 6, 7])], imt_dt) >>> extract_from(a, ['PGA']) array([[1., 2., 3.]])
>>> gmf_dt = numpy.dtype([('A', imt_dt), ('B', imt_dt), ... ('idx', numpy.uint32)]) >>> b = numpy.array([(([1, 2, 3], [4, 5, 6, 7]), ... ([1, 2, 4], [3, 5, 6, 7]), 8)], gmf_dt) >>> extract_from(b, ['idx']) array([8], dtype=uint32) >>> extract_from(b, ['B', 'PGV']) array([[3., 5., 6., 7.]])
-
openquake.commonlib.writers.
parse_comment
(comment)[source]¶ Parse a comment of the form # investigation_time=50.0, imt=”PGA”, … and returns it as pairs of strings:
>>> parse_comment('''path=('b1',), time=50.0, imt="PGA"''') [('path', ('b1',)), ('time', 50.0), ('imt', 'PGA')]
-
openquake.commonlib.writers.
parse_header
(header)[source]¶ Convert a list of the form [‘fieldname:fieldtype:fieldsize’,…] into a numpy composite dtype. The parser understands headers generated by
openquake.commonlib.writers.build_header()
. Here is an example:>>> parse_header(['PGA:float32', 'PGV', 'avg:float32:2']) (['PGA', 'PGV', 'avg'], dtype([('PGA', '<f4'), ('PGV', '<f8'), ('avg', '<f4', (2,))]))
Params header: a list of type descriptions Returns: column names and the corresponding composite dtype
-
openquake.commonlib.writers.
read_array
(fname, sep=', ')[source]¶ Convert a CSV file without header into a numpy array of floats.
>>> from openquake.baselib.general import gettemp >>> print(read_array(gettemp('.1 .2, .3 .4, .5 .6\n'))) [[[0.1 0.2] [0.3 0.4] [0.5 0.6]]]
-
openquake.commonlib.writers.
read_composite_array
(fname, sep=', ')[source]¶ Convert a CSV file with header into an ArrayWrapper object.
>>> from openquake.baselib.general import gettemp >>> fname = gettemp('PGA:3,PGV:2,avg:1\n' ... '.1 .2 .3,.4 .5,.6\n') >>> print(read_composite_array(fname).array) # array of shape (1,) [([0.1, 0.2, 0.3], [0.4, 0.5], [0.6])]
-
openquake.commonlib.writers.
write_csv
(dest, data, sep=', ', fmt='%.6E', header=None, comment=None)[source]¶ Parameters: - dest – None, file, filename or io.BytesIO instance
- data – array to save
- sep – separator to use (default comma)
- fmt – formatting string (default ‘%12.8E’)
- header – optional list with the names of the columns to display
- comment – optional first line starting with a # character