Source code for openquake.risklib.riskinput

# -*- coding: utf-8 -*-
# vim: tabstop=4 shiftwidth=4 softtabstop=4
#
# Copyright (C) 2015-2019 GEM Foundation
#
# OpenQuake is free software: you can redistribute it and/or modify it
# under the terms of the GNU Affero General Public License as published
# by the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# OpenQuake is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with OpenQuake. If not, see <http://www.gnu.org/licenses/>.

import copy
import logging
import collections
from urllib.parse import unquote_plus
import numpy

from openquake.baselib import hdf5
from openquake.baselib.general import (
    AccumDict, group_array, cached_property)
from openquake.risklib import scientific, riskmodels


[docs]class ValidationError(Exception): pass
U32 = numpy.uint32 F32 = numpy.float32
[docs]def get_assets_by_taxo(assets, epspath=None): """ :param assets: an array of assets :param epspath: hdf5 file where the epsilons are (or None) :returns: assets_by_taxo with attributes eps and idxs """ assets_by_taxo = AccumDict(group_array(assets, 'taxonomy')) assets_by_taxo.idxs = numpy.argsort(numpy.concatenate([ a['ordinal'] for a in assets_by_taxo.values()])) assets_by_taxo.eps = {} if epspath is None: # no epsilons return assets_by_taxo # otherwise read the epsilons and group them by taxonomy with hdf5.File(epspath, 'r') as h5: dset = h5['epsilon_matrix'] for taxo, assets in assets_by_taxo.items(): lst = [dset[aid] for aid in assets['ordinal']] assets_by_taxo.eps[taxo] = numpy.array(lst) return assets_by_taxo
[docs]def extract(rmdict, kind): lst = [] for riskid, rm in rmdict.items(): risk_functions = getattr(rm, 'risk_functions', rm) for (lt, k), rf in risk_functions.items(): if k == kind: lst.append((riskid, rf)) return lst
[docs]class CompositeRiskModel(collections.abc.Mapping): """ A container (riskid, kind) -> riskmodel :param oqparam: an :class:`openquake.commonlib.oqvalidation.OqParam` instance :param fragdict: a dictionary riskid -> loss_type -> fragility functions :param vulndict: a dictionary riskid -> loss_type -> vulnerability function :param consdict: a dictionary riskid -> loss_type -> consequence functions """
[docs] @classmethod def read(cls, dstore): """ :param dstore: a DataStore instance :returns: a :class:`CompositeRiskModel` instance """ oqparam = dstore['oqparam'] crm = dstore.getitem('risk_model') riskdict = AccumDict(accum={}) riskdict.limit_states = crm.attrs['limit_states'] for quoted_id, rm in crm.items(): riskid = unquote_plus(quoted_id) for lt_kind in rm: lt, kind = lt_kind.rsplit('-', 1) rf = dstore['risk_model/%s/%s' % (quoted_id, lt_kind)] if kind == 'consequence': riskdict[riskid][lt, kind] = rf elif kind == 'fragility': # rf is a FragilityFunctionList try: rf = rf.build( riskdict.limit_states, oqparam.continuous_fragility_discretization, oqparam.steps_per_interval) except ValueError as err: raise ValueError('%s: %s' % (riskid, err)) riskdict[riskid][lt, kind] = rf else: # rf is a vulnerability function rf.init() if lt.endswith('_retrofitted'): # strip _retrofitted, since len('_retrofitted') = 12 riskdict[riskid][ lt[:-12], 'vulnerability_retrofitted'] = rf else: riskdict[riskid][lt, 'vulnerability'] = rf return CompositeRiskModel(oqparam, riskdict)
def __init__(self, oqparam, riskdict): self.damage_states = [] self._riskmodels = {} # riskid -> riskmodel if oqparam.calculation_mode.endswith('_bcr'): # classical_bcr calculator for riskid, risk_functions in sorted(riskdict.items()): self._riskmodels[riskid] = riskmodels.get_riskmodel( riskid, oqparam, risk_functions=risk_functions) elif (extract(riskdict, 'fragility') or 'damage' in oqparam.calculation_mode): # classical_damage/scenario_damage calculator if oqparam.calculation_mode in ('classical', 'scenario'): # case when the risk files are in the job_hazard.ini file oqparam.calculation_mode += '_damage' if 'exposure' not in oqparam.inputs: raise RuntimeError( 'There are risk files in %r but not ' 'an exposure' % oqparam.inputs['job_ini']) self.damage_states = ['no_damage'] + list(riskdict.limit_states) for riskid, ffs_by_lt in sorted(riskdict.items()): self._riskmodels[riskid] = riskmodels.get_riskmodel( riskid, oqparam, risk_functions=ffs_by_lt) else: # classical, event based and scenario calculators for riskid, vfs in sorted(riskdict.items()): for vf in vfs.values(): # set the seed; this is important for the case of # VulnerabilityFunctionWithPMF vf.seed = oqparam.random_seed self._riskmodels[riskid] = riskmodels.get_riskmodel( riskid, oqparam, risk_functions=vfs) self.init(oqparam)
[docs] def has(self, kind): return extract(self._riskmodels, kind)
[docs] def init(self, oqparam): self.imtls = oqparam.imtls imti = {imt: i for i, imt in enumerate(oqparam.imtls)} self.lti = {} # loss_type -> idx self.covs = 0 # number of coefficients of variation # build a sorted list with all the loss_types contained in the model ltypes = set() for rm in self.values(): ltypes.update(rm.loss_types) self.loss_types = sorted(ltypes) self.taxonomies = set() for riskid, riskmodel in self._riskmodels.items(): self.taxonomies.add(riskid) riskmodel.compositemodel = self for lt, vf in riskmodel.risk_functions.items(): # save the number of nonzero coefficients of variation if hasattr(vf, 'covs') and vf.covs.any(): self.covs += 1 missing = set(self.loss_types) - set( lt for lt, kind in riskmodel.risk_functions) if missing: raise ValidationError( 'Missing vulnerability function for taxonomy %s and loss' ' type %s' % (riskid, ', '.join(missing))) riskmodel.imti = {lt: imti[riskmodel.risk_functions[lt, kind].imt] for lt, kind in riskmodel.risk_functions if kind in 'vulnerability fragility'} self.curve_params = self.make_curve_params(oqparam) iml = collections.defaultdict(list) for riskid, rm in self._riskmodels.items(): for lt, rf in rm.risk_functions.items(): if hasattr(rf, 'imt'): iml[rf.imt].append(rf.imls[0]) self.min_iml = {imt: min(iml[imt]) for imt in iml}
@cached_property def taxonomy_dict(self): """ :returns: a dict taxonomy string -> taxonomy index """ # .taxonomy must be set by the engine tdict = {taxo: idx for idx, taxo in enumerate(self.taxonomy)} return tdict
[docs] def make_curve_params(self, oqparam): # the CurveParams are used only in classical_risk, classical_bcr # NB: populate the inner lists .loss_types too cps = [] for l, loss_type in enumerate(self.loss_types): if oqparam.calculation_mode in ('classical', 'classical_risk'): curve_resolutions = set() lines = [] allratios = [] for taxo in sorted(self): rm = self[taxo] rf = rm.risk_functions.get((loss_type, 'vulnerability')) if rf and loss_type in rm.loss_ratios: ratios = rm.loss_ratios[loss_type] allratios.append(ratios) curve_resolutions.add(len(ratios)) lines.append('%s %d' % (rf, len(ratios))) if len(curve_resolutions) > 1: # number of loss ratios is not the same for all taxonomies: # then use the longest array; see classical_risk case_5 allratios.sort(key=len) for rm in self.values(): if rm.loss_ratios[loss_type] != allratios[-1]: rm.loss_ratios[loss_type] = allratios[-1] logging.debug('Redefining loss ratios for %s', rm) cp = scientific.CurveParams( l, loss_type, max(curve_resolutions), allratios[-1], True ) if curve_resolutions else scientific.CurveParams( l, loss_type, 0, [], False) else: # used only to store the association l -> loss_type cp = scientific.CurveParams(l, loss_type, 0, [], False) cps.append(cp) self.lti[loss_type] = l return cps
[docs] def get_loss_ratios(self): """ :returns: a 1-dimensional composite array with loss ratios by loss type """ lst = [('user_provided', numpy.bool)] for cp in self.curve_params: lst.append((cp.loss_type, F32, len(cp.ratios))) loss_ratios = numpy.zeros(1, numpy.dtype(lst)) for cp in self.curve_params: loss_ratios['user_provided'] = cp.user_provided loss_ratios[cp.loss_type] = tuple(cp.ratios) return loss_ratios
def __getitem__(self, taxo): return self._riskmodels[taxo]
[docs] def get_rmodels_weights(self, taxidx): """ :returns: a list of weighted risk models for the given taxonomy index """ rmodels, weights = [], [] for key, weight in self.tmap[taxidx]: rmodels.append(self._riskmodels[key]) weights.append(weight) return rmodels, weights
def __iter__(self): return iter(sorted(self._riskmodels)) def __len__(self): return len(self._riskmodels)
[docs] def gen_outputs(self, riskinput, monitor, epspath=None, haz=None): """ Group the assets per taxonomy and compute the outputs by using the underlying riskmodels. Yield one output per realization. :param riskinput: a RiskInput instance :param monitor: a monitor object used to measure the performance """ self.monitor = monitor hazard_getter = riskinput.hazard_getter [sid] = hazard_getter.sids if haz is None: with monitor('getting hazard'): haz = hazard_getter.get_hazard() if isinstance(haz, dict): items = haz.items() else: # list of length R items = enumerate(haz) with monitor('computing risk', measuremem=False): # this approach is slow for event_based_risk since a lot of # small arrays are passed (one per realization) instead of # a long array with all realizations; ebrisk does the right # thing since it calls get_output directly assets_by_taxo = get_assets_by_taxo(riskinput.assets, epspath) for rlzi, haz_by_rlzi in items: out = self.get_output(assets_by_taxo, haz_by_rlzi, rlzi) yield out
[docs] def get_output(self, assets_by_taxo, haz, rlzi=None): """ :param assets_by_taxo: a dictionary taxonomy index -> assets on a site :param haz: an array or a dictionary of hazard on that site :param rlzi: if given, a realization index """ if hasattr(haz, 'array'): # classical eids = [] data = [haz.array[self.imtls(imt), 0] for imt in self.imtls] elif isinstance(haz, numpy.ndarray): # NB: in GMF-based calculations the order in which # the gmfs are stored is random since it depends on # which hazard task ends first; here we reorder # the gmfs by event ID; this is convenient in # general and mandatory for the case of # VulnerabilityFunctionWithPMF, otherwise the # sample method would receive the means in random # order and produce random results even if the # seed is set correctly; very tricky indeed! (MS) haz.sort(order='eid') eids = haz['eid'] data = haz['gmv'] # shape (E, M) elif haz == 0: # no hazard for this site (event based) eids = numpy.arange(1) data = [] else: raise ValueError('Unexpected haz=%s' % haz) dic = dict(eids=eids) if rlzi is not None: dic['rlzi'] = rlzi for l, lt in enumerate(self.loss_types): ls = [] for taxonomy, assets_ in assets_by_taxo.items(): if len(assets_by_taxo.eps): epsilons = assets_by_taxo.eps[taxonomy][:, eids] else: # no CoVs epsilons = () arrays = [] rmodels, weights = self.get_rmodels_weights(taxonomy) for rm in rmodels: if len(data) == 0: dat = [0] elif len(eids): # gmfs dat = data[:, rm.imti[lt]] else: # hcurves dat = data[rm.imti[lt]] arrays.append(rm(lt, assets_, dat, eids, epsilons)) res = arrays[0] if len(arrays) == 1 else numpy.sum( a * w for a, w in zip(arrays, weights)) ls.append(res) arr = numpy.concatenate(ls) dic[lt] = arr[assets_by_taxo.idxs] if len(arr) else arr return hdf5.ArrayWrapper((), dic)
[docs] def reduce(self, taxonomies): """ :param taxonomies: a set of taxonomies :returns: a new CompositeRiskModel reduced to the given taxonomies """ new = copy.copy(self) new._riskmodels = {} for riskid, rm in self._riskmodels.items(): if riskid in taxonomies: new._riskmodels[riskid] = rm rm.compositemodel = new return new
def __toh5__(self): loss_types = hdf5.array_of_vstr(self.loss_types) limit_states = hdf5.array_of_vstr(self.damage_states[1:] if self.damage_states else []) dic = dict(covs=self.covs, loss_types=loss_types, limit_states=limit_states) rf = next(iter(self.values())) if hasattr(rf, 'loss_ratios'): for lt in self.loss_types: dic['loss_ratios_' + lt] = rf.loss_ratios[lt] return self._riskmodels, dic def __repr__(self): lines = ['%s: %s' % item for item in sorted(self.items())] return '<%s(%d, %d)\n%s>' % ( self.__class__.__name__, len(lines), self.covs, '\n'.join(lines))
[docs]class RiskInput(object): """ Contains all the assets and hazard values associated to a given imt and site. :param hazard_getter: a callable returning the hazard data for a given realization :param assets_by_site: array of assets, one per site """ def __init__(self, hazard_getter, assets): self.hazard_getter = hazard_getter self.assets = assets self.weight = len(assets) aids = [] for asset in self.assets: aids.append(asset['ordinal']) self.aids = numpy.array(aids, numpy.uint32) def __repr__(self): return '<%s taxonomy=%s, %d asset(s)>' % ( self.__class__.__name__, ' '.join(map(str, self.taxonomies)), len(self.aids))
# used in scenario_risk
[docs]def make_eps(asset_array, num_samples, seed, correlation): """ :param asset_array: an array of assets :param int num_samples: the number of ruptures :param int seed: a random seed :param float correlation: the correlation coefficient :returns: epsilons matrix of shape (num_assets, num_samples) """ assets_by_taxo = group_array(asset_array, 'taxonomy') eps = numpy.zeros((len(asset_array), num_samples), numpy.float32) for taxonomy, assets in assets_by_taxo.items(): shape = (len(assets), num_samples) logging.info('Building %s epsilons for taxonomy %s', shape, taxonomy) zeros = numpy.zeros(shape) epsilons = scientific.make_epsilons(zeros, seed, correlation) for asset, epsrow in zip(assets, epsilons): eps[asset['ordinal']] = epsrow return eps
[docs]def cache_epsilons(dstore, oq, assetcol, riskmodel, E): """ Do nothing if there are no coefficients of variation of ignore_covs is set. Otherwise, generate an epsilon matrix of shape (A, E) and save it in the cache file, by returning the path to it. """ if oq.ignore_covs or not riskmodel.covs: return A = len(assetcol) hdf5path = dstore.hdf5cache() logging.info('Storing the epsilon matrix in %s', hdf5path) if oq.calculation_mode == 'scenario_risk': eps = make_eps(assetcol.array, E, oq.master_seed, oq.asset_correlation) else: # event based if oq.asset_correlation: numpy.random.seed(oq.master_seed) eps = numpy.array([numpy.random.normal(size=E)] * A) else: seeds = oq.master_seed + numpy.arange(E) eps = numpy.zeros((A, E), F32) for i, seed in enumerate(seeds): numpy.random.seed(seed) eps[:, i] = numpy.random.normal(size=A) with hdf5.File(hdf5path) as cache: cache['epsilon_matrix'] = eps return hdf5path
[docs]def str2rsi(key): """ Convert a string of the form 'rlz-XXXX/sid-YYYY/ZZZ' into a triple (XXXX, YYYY, ZZZ) """ rlzi, sid, imt = key.split('/') return int(rlzi[4:]), int(sid[4:]), imt
[docs]def rsi2str(rlzi, sid, imt): """ Convert a triple (XXXX, YYYY, ZZZ) into a string of the form 'rlz-XXXX/sid-YYYY/ZZZ' """ return 'rlz-%04d/sid-%04d/%s' % (rlzi, sid, imt)