openquake.calculators package

base module

class openquake.calculators.base.BaseCalculator(oqparam, calc_id)[source]

Bases: object

Abstract base class for all calculators.

Parameters
  • oqparam – OqParam object

  • monitor – monitor object

  • calc_id – numeric calculation ID

accept_precalc = []
check_precalc(precalc_mode)[source]

Defensive programming against users providing an incorrect pre-calculation ID (with --hazard-calculation-id).

Parameters

precalc_mode – calculation_mode of the previous calculation

core_task()[source]

Core routine running on the workers.

abstract execute()[source]

Execution phase. Usually will run in parallel the core function and return a dictionary with the results.

export(exports=None)[source]

Export all the outputs in the datastore in the given export formats. Individual outputs are not exported if there are multiple realizations.

from_engine = False
gzip_inputs()[source]

Gzipping the inputs and saving them in the datastore

is_stochastic = False
monitor(operation='', **kw)[source]
Returns

a new Monitor instance

abstract post_execute(result)[source]

Post-processing phase of the aggregated output. It must be overridden with the export code. It will return a dictionary of output files.

pre_checks()[source]

Checks to run after the pre_execute but before the execute

abstract pre_execute()[source]

Initialization phase.

precalc = None
run(pre_execute=True, concurrent_tasks=None, remove=True, shutdown=False, **kw)[source]

Run the calculation and return the exported outputs.

Parameters
  • pre_execute – set it to False to avoid running pre_execute

  • concurrent_tasks – set it to 0 to disable parallelization

  • remove – set it to False to remove the hdf5cache file (if any)

  • shutdown – set it to True to shutdown the ProcessPool

save_params(**kw)[source]

Update the current calculation parameters and save engine_version

class openquake.calculators.base.HazardCalculator(oqparam, calc_id)[source]

Bases: openquake.calculators.base.BaseCalculator

Base class for hazard calculators based on source models

property E
Returns

the number of stored events

property N
Returns

the total number of sites

property R
Returns

the number of realizations

af = None
amplifier = None
check_discardable(rel_ruptures)[source]

Check if logic tree reduction is possible

check_floating_spinning()[source]
check_overflow()[source]

Overridden in event based

property few_sites
Returns

True if there are less than max_sites_disagg

import_perils()[source]

Defined in MultiRiskCalculator

init()[source]

To be overridden to initialize the datasets needed by the calculation

load_crmodel()[source]

Read the risk models and set the attribute .crmodel. The crmodel can be empty for hazard calculations. Save the loss ratios (if any) in the datastore.

load_insurance_data(lt_fnames)[source]

Read the insurance files and populate the policy_df

post_process()[source]

For compatibility with the engine

pre_execute()[source]

Check if there is a previous calculation ID. If yes, read the inputs by retrieving the previous calculation; if not, read the inputs directly.

read_exposure(haz_sitecol)[source]

Read the exposure, the risk models and update the attributes .sitecol, .assetcol

read_inputs()[source]

Read risk data and sources if any

save_crmodel()[source]

Save the risk models in the datastore

src_filter()[source]
Returns

a SourceFilter

store_rlz_info(rel_ruptures)[source]

Save info about the composite source model inside the full_lt dataset

Parameters

rel_ruptures – dictionary TRT -> number of relevant ruptures

store_source_info(source_data)[source]

Save (eff_ruptures, num_sites, calc_time) inside the source_info

exception openquake.calculators.base.InvalidCalculationID[source]

Bases: Exception

Raised when running a post-calculation on top of an incompatible pre-calculation

class openquake.calculators.base.RiskCalculator(oqparam, calc_id)[source]

Bases: openquake.calculators.base.HazardCalculator

Base class for all risk calculators. A risk calculator must set the attributes .crmodel, .sitecol, .assetcol, .riskinputs in the pre_execute phase.

build_riskinputs()[source]
Returns

a list of RiskInputs objects, sorted by IMT.

combine(acc, res)[source]

Combine the outputs assuming acc and res are dictionaries

execute()[source]

Parallelize on the riskinputs and returns a dictionary of results. Require a .core_task to be defined with signature (riskinputs, crmodel, param, monitor).

openquake.calculators.base.build_weights(realizations)[source]
Returns

an array with the realization weights of shape R

openquake.calculators.base.check_amplification(ampl_df, sitecol)[source]

Make sure the amplification codes in the site collection match the ones in the amplification table.

Parameters
  • ampl_df – the amplification table as a pandas DataFrame

  • sitecol – the site collection

openquake.calculators.base.check_imtls(this, parent)[source]

Fix the hazard_imtls of two calculations if possible

openquake.calculators.base.check_time_event(oqparam, occupancy_periods)[source]

Check the time_event parameter in the datastore, by comparing with the periods found in the exposure.

openquake.calculators.base.consistent(dic1, dic2)[source]

Check if two dictionaries with default are consistent:

>>> consistent({'PGA': 0.05, 'SA(0.3)': 0.05}, {'default': 0.05})
True
>>> consistent({'SA(0.3)': 0.1, 'SA(0.6)': 0.05},
... {'default': 0.1, 'SA(0.3)': 0.1, 'SA(0.6)': 0.05})
True
openquake.calculators.base.create_gmf_data(dstore, prim_imts, sec_imts=(), data=None)[source]

Create and possibly populate the datasets in the gmf_data group

openquake.calculators.base.create_risk_by_event(calc)[source]

Created an empty risk_by_event with keys event_id, agg_id, loss_id and fields for damages, losses and consequences

openquake.calculators.base.get_stats(seq)[source]
openquake.calculators.base.import_gmfs_csv(dstore, oqparam, sids)[source]

Import in the datastore a ground motion field CSV file.

Parameters
  • dstore – the datastore

  • oqparam – an OqParam instance

  • sids – the complete site IDs

Returns

event_ids

openquake.calculators.base.import_gmfs_hdf5(dstore, oqparam)[source]

Import in the datastore a ground motion field HDF5 file.

Parameters
  • dstore – the datastore

  • oqparam – an OqParam instance

Returns

event_ids

openquake.calculators.base.read_shakemap(calc, haz_sitecol, assetcol)[source]

Enabled only if there is a shakemap_id parameter in the job.ini. Download, unzip, parse USGS shakemap files and build a corresponding set of GMFs which are then filtered with the hazard site collection and stored in the datastore.

openquake.calculators.base.run_calc(job_ini, **kw)[source]

Helper to run calculations programmatically.

Parameters
  • job_ini – path to a job.ini file or dictionary of parameters

  • kw – parameters to override

Returns

a Calculator instance

openquake.calculators.base.save_agg_values(dstore, assetcol, lossnames, aggby)[source]

Store agg_keys, agg_values. :returns: the aggkey dictionary key -> tags

openquake.calculators.base.save_shakemap(calc, sitecol, shakemap, gmf_dict)[source]

Store a ShakeMap array as a gmf_data dataset.

openquake.calculators.base.set_array(longarray, shortarray)[source]
Parameters
  • longarray – a numpy array of floats of length L >= l

  • shortarray – a numpy array of floats of length l

Fill longarray with the values of shortarray, starting from the left. If shortarry is shorter than longarray, then the remaining elements on the right are filled with numpy.nan values.

getters module

class openquake.calculators.getters.HcurvesGetter(dstore)[source]

Bases: object

Read the contribution to the hazard curves coming from each source in a calculation with a source specific logic tree

get_hcurve(src_id, imt=None, site_id=0, gsim_idx=None)[source]

Return the curve associated to the given src_id, imt and gsim_idx as an array of length L

get_hcurves(src, imt=None, site_id=0, gsim_idx=None)[source]

Return the curves associated to the given src, imt and gsim_idx as an array of shape (R, L)

get_mean_hcurve(src=None, imt=None, site_id=0, gsim_idx=None)[source]

Return the mean curve associated to the given src, imt and gsim_idx as an array of shape L

exception openquake.calculators.getters.NotFound[source]

Bases: Exception

class openquake.calculators.getters.PmapGetter(dstore, weights, slices, imtls=(), poes=())[source]

Bases: object

Read hazard curves from the datastore for all realizations or for a specific realization.

Parameters
  • dstore – a DataStore instance or file system path to it

  • sids – the subset of sites to consider (if None, all sites)

property L
property M
property N
property R
get_hazard(gsim=None)[source]
Parameters

gsim – ignored

Returns

a probability curve of shape (L, R) for the given site

get_mean()[source]

Compute the mean curve as a ProbabilityMap

Parameters

grp – if not None must be a string of the form “grp-XX”; in that case returns the mean considering only the contribution for group XX

get_pcurve(sid)[source]
Returns

a ProbabilityCurve of shape L, R

property imts
init()[source]

Build the probability curves from the underlying dataframes

property sids
class openquake.calculators.getters.RuptureGetter(proxies, filename, trt_smr, trt, rlzs_by_gsim)[source]

Bases: object

Parameters
  • proxies – a list of RuptureProxies

  • filename – path to the HDF5 file containing a ‘rupgeoms’ dataset

  • trt_smr – source group index

  • trt – tectonic region type string

  • rlzs_by_gsim – dictionary gsim -> rlzs for the group

get_proxies(min_mag=0)[source]
Returns

a list of RuptureProxies

get_rupdict()[source]
Returns

a dictionary with the parameters of the rupture

property num_ruptures
split(srcfilter, maxw)[source]
Returns

RuptureProxies with weight < maxw

openquake.calculators.getters.build_stat_curve(pcurve, imtls, stat, weights)[source]

Build statistics by taking into account IMT-dependent weights

openquake.calculators.getters.get_ebruptures(dstore)[source]

Extract EBRuptures from the datastore

openquake.calculators.getters.get_rupture_getters(dstore, ct=0, slc=slice(None, None, None), srcfilter=None)[source]
Parameters
Returns

a list of RuptureGetters

openquake.calculators.getters.line(points)[source]
openquake.calculators.getters.multiline(array3RC)[source]
Parameters

array3RC – array of shape (3, R, C)

Returns

a MULTILINESTRING

openquake.calculators.getters.sig_eps_dt(imts)[source]
Returns

a composite data type for the sig_eps output

classical module

class openquake.calculators.classical.ClassicalCalculator(oqparam, calc_id)[source]

Bases: openquake.calculators.base.HazardCalculator

Classical PSHA calculator

SLOW_TASK_ERROR = False
accept_precalc = ['preclassical', 'classical']
agg_dicts(acc, dic)[source]

Aggregate dictionaries of hazard curves by updating the accumulator.

Parameters
  • acc – accumulator dictionary

  • dic – dict with keys pmap, source_data, rup_data

check_memory(N, L, num_gs)[source]

Log the memory required to receive the largest ProbabilityMap, assuming all sites are affected (upper limit)

collect_hazard(acc, pmap_by_kind)[source]

Populate hcurves and hmaps in the .hazard dictionary

Parameters
  • acc – ignored

  • pmap_by_kind – a dictionary of ProbabilityMaps

core_task(sids, cmaker, monitor)

Read the sitecol and call the classical calculator in hazardlib

create_disagg_by_src()[source]
Returns

the unique source IDs contained in the composite model

create_dsets()[source]

Store some empty datasets in the datastore

execute()[source]

Run in parallel core_task(sources, sitecol, monitor), by parallelizing on the sources according to their weight and tectonic region type.

init_poes()[source]
post_classical()[source]

Store hcurves-rlzs, hcurves-stats, hmaps-rlzs, hmaps-stats

post_execute(dummy)[source]

Compute the statistical hazard curves

precalc = 'preclassical'
store_info()[source]

Store full_lt, source_info and source_data

submit(sids, cmakers, max_weight)[source]
Returns

a Starmap instance for the current tile

class openquake.calculators.classical.Hazard(dstore, full_lt, srcidx)[source]

Bases: object

Helper class for storing the PoEs

get_hcurves(pmap, rlzs_by_gsim)[source]
Parameters
  • pmap – a ProbabilityMap

  • rlzs_by_gsim – a dictionary gsim -> rlz IDs

Returns

an array of PoEs of shape (N, R, M, L)

store_disagg(pmaps=None)[source]

Store data inside disagg_by_grp (optionally disagg_by_src)

store_poes(grp_id, pmap)[source]

Store the pmap of the given group inside the _poes dataset

class openquake.calculators.classical.Set[source]

Bases: set

openquake.calculators.classical.check_disagg_by_src(dstore)[source]

Make sure that by composing disagg_by_src one gets the hazard curves

openquake.calculators.classical.classical(srcs, sids, cmaker, monitor)[source]

Read the sitecol and call the classical calculator in hazardlib

openquake.calculators.classical.make_hmap_png(hmap, lons, lats)[source]
Parameters
  • hmap – a dictionary with keys calc_id, m, p, imt, poe, inv_time, array

  • lons – an array of longitudes

  • lats – an array of latitudes

Returns

an Image object containing the hazard map

openquake.calculators.classical.postclassical(pgetter, N, hstats, individual_rlzs, max_sites_disagg, amplifier, monitor)[source]
Parameters
  • pgetter – an openquake.commonlib.getters.PmapGetter

  • N – the total number of sites

  • hstats – a list of pairs (statname, statfunc)

  • individual_rlzs – if True, also build the individual curves

  • max_sites_disagg – if there are less sites than this, store rup info

  • amplifier – instance of Amplifier or None

  • monitor – instance of Monitor

Returns

a dictionary kind -> ProbabilityMap

The “kind” is a string of the form ‘rlz-XXX’ or ‘mean’ of ‘quantile-XXX’ used to specify the kind of output.

openquake.calculators.classical.semicolon_aggregate(probs, source_ids)[source]
Parameters
  • probs – array of shape (…, Ns)

  • source_ids – list of source IDs (some with semicolons) of length Ns

Returns

array of shape (…, Ns) and list of length N with N < Ns

This is used to aggregate array of probabilities in the case of sources which are variations of a base source. Here is an example with Ns=7 sources reducible to N=4 base sources:

>>> source_ids = ['A;0', 'A;1', 'A;2', 'B', 'C', 'D;0', 'D;1']
>>> probs = numpy.array([[.01, .02, .03, .04, .05, .06, .07],
...                      [.00, .01, .02, .03, .04, .05, .06]])

semicolon_aggregate effectively reduces the array of probabilities from 7 to 4 components, however for storage convenience it does not change the shape, so the missing components are zeros:

>>> semicolon_aggregate(probs, source_ids)  # (2, 7) => (2, 4)
(array([[0.058906, 0.04    , 0.05    , 0.1258  , 0.      , 0.      ,
        0.      ],
       [0.0298  , 0.03    , 0.04    , 0.107   , 0.      , 0.      ,
        0.      ]]), array(['A', 'B', 'C', 'D'], dtype='<U1'))

It is assumed that the semicolon sources are independent, i.e. not mutex.

openquake.calculators.classical.store_ctxs(dstore, rupdata_list, grp_id)[source]

Store contexts in the datastore

classical_bcr module

class openquake.calculators.classical_bcr.ClassicalBCRCalculator(oqparam, calc_id)[source]

Bases: openquake.calculators.classical_risk.ClassicalRiskCalculator

Classical BCR Risk calculator

accept_precalc = ['classical']
core_task(param, monitor)

Compute and return the average losses for each asset.

Parameters
post_execute(result)[source]

Saving loss curves in the datastore.

Parameters

result – aggregated result of the task classical_risk

pre_execute()[source]

Associate the assets to the sites and build the riskinputs.

openquake.calculators.classical_bcr.classical_bcr(riskinputs, param, monitor)[source]

Compute and return the average losses for each asset.

Parameters

classical_damage module

class openquake.calculators.classical_damage.ClassicalDamageCalculator(oqparam, calc_id)[source]

Bases: openquake.calculators.classical_risk.ClassicalRiskCalculator

Scenario damage calculator

accept_precalc = ['classical']
core_task(param, monitor)

Core function for a classical damage computation.

Parameters
Yields

dictionaries asset_ordinal -> damage(R, L, D)

post_execute(result)[source]

Export the result in CSV format.

Parameters

result – a dictionary asset_ordinal -> array(R, L, D)

openquake.calculators.classical_damage.classical_damage(riskinputs, param, monitor)[source]

Core function for a classical damage computation.

Parameters
Yields

dictionaries asset_ordinal -> damage(R, L, D)

classical_risk module

class openquake.calculators.classical_risk.ClassicalRiskCalculator(oqparam, calc_id)[source]

Bases: openquake.calculators.base.RiskCalculator

Classical Risk calculator

accept_precalc = ['classical']
core_task(oqparam, monitor)

Compute and return the average losses for each asset.

Parameters
post_execute(result)[source]

Saving loss curves in the datastore.

Parameters

result – aggregated result of the task classical_risk

pre_execute()[source]

Associate the assets to the sites and build the riskinputs.

precalc = 'classical'
openquake.calculators.classical_risk.classical_risk(riskinputs, oqparam, monitor)[source]

Compute and return the average losses for each asset.

Parameters

disaggregation module

Disaggregation calculator core functionality

class openquake.calculators.disaggregation.DisaggregationCalculator(oqparam, calc_id)[source]

Bases: openquake.calculators.base.HazardCalculator

Classical PSHA disaggregation calculator

accept_precalc = ['classical', 'disaggregation']
agg_result(acc, result)[source]

Collect the results coming from compute_disagg into self.results.

Parameters
  • acc – dictionary sid -> trti, magi -> 6D array

  • result – dictionary with the result coming from a task

compute()[source]

Submit disaggregation tasks and return the results

execute()[source]

Performs the disaggregation

full_disaggregation()[source]

Run the disaggregation phase.

get_curve(sid, rlzs)[source]

Get the hazard curves for the given site ID and realizations.

Parameters
  • sid – site ID

  • rlzs – a matrix of indices of shape Z

Returns

a list of Z arrays of PoEs

post_execute(results)[source]

Save all the results of the disaggregation. NB: the number of results to save is #sites * #rlzs * #disagg_poes * #IMTs.

Parameters

results – a dictionary sid, imti, kind -> trti -> disagg matrix

pre_checks()[source]

Checks on the number of sites, atomic groups and size of the disaggregation matrix.

precalc = 'classical'
save_bin_edges(all_edges)[source]

Save disagg-bins

save_disagg_results(results)[source]

Save the computed PMFs in the datastore

Parameters

results – a dict s, m, k -> 6D-matrix of shape (T, Ma, Lo, La, P, Z) or (T, Ma, D, E, P, Z) depending if k is 0 or k is 1

openquake.calculators.disaggregation.compute_disagg(dstore, slc, cmaker, hmap4, magidx, bin_edges, monitor)[source]
Parameters
  • dstore – a DataStore instance

  • slc – a slice of contexts

  • cmaker – a openquake.hazardlib.gsim.base.ContextMaker instance

  • hmap4 – an ArrayWrapper of shape (N, M, P, Z)

  • magidx – magnitude bin indices

  • bin_egdes – a quartet (dist_edges, lon_edges, lat_edges, eps_edges)

  • monitor – monitor of the currently running job

Returns

a dictionary sid, imti -> 6D-array

openquake.calculators.disaggregation.get_outputs_size(shapedic, disagg_outputs)[source]
Returns

the total size of the outputs

openquake.calculators.disaggregation.output(mat6)[source]
Parameters

mat6 – a 6D matrix with axis (D, Lo, La, E, P, Z)

Returns

two matrices of shape (D, E, P, Z) and (Lo, La, P, Z)

openquake.calculators.disaggregation.output_dict(shapedic, disagg_outputs)[source]
openquake.calculators.disaggregation.weighted_disagg(close, cmaker, g_by_z, iml2, eps3, s, bins, epsstar)[source]
Returns

a 7D disaggregation matrix, weighted if src_mutex is True

event_based module

class openquake.calculators.event_based.EventBasedCalculator(oqparam, calc_id)[source]

Bases: openquake.calculators.base.HazardCalculator

Event based PSHA calculator generating the ground motion fields and the hazard curves from the ruptures, depending on the configuration parameters.

acc0()[source]

Initial accumulator, a dictionary rlz -> ProbabilityMap

accept_precalc = ['event_based', 'ebrisk', 'event_based_risk']
agg_dicts(acc, result)[source]
Parameters
  • acc – accumulator dictionary

  • result – an AccumDict with events, ruptures, gmfs and hcurves

build_events_from_sources()[source]

Prefilter the composite source model and store the source_info

core_task(full_lt, oqparam, dstore, monitor)

Compute GMFs and optionally hazard curves

execute()[source]

Execution phase. Usually will run in parallel the core function and return a dictionary with the results.

init()[source]

To be overridden to initialize the datasets needed by the calculation

is_stochastic = True
post_execute(result)[source]

Post-processing phase of the aggregated output. It must be overridden with the export code. It will return a dictionary of output files.

save_avg_gmf()[source]

Compute and save avg_gmf, unless there are too many GMFs

openquake.calculators.event_based.compute_avg_gmf(gmf_df, weights, min_iml)[source]
Parameters
  • gmf_df – a DataFrame with colums eid, sid, rlz, gmv…

  • weights – E weights associated to the realizations

  • min_iml – array of M minimum intensities

Returns

a dictionary site_id -> array of shape (2, M)

openquake.calculators.event_based.count_ruptures(src)[source]

Count the number of ruptures on a heavy source

openquake.calculators.event_based.event_based(proxies, full_lt, oqparam, dstore, monitor)[source]

Compute GMFs and optionally hazard curves

openquake.calculators.event_based.get_mean_curves(dstore, imt)[source]

Extract the mean hazard curves from the datastore, as an array of shape (N, L1)

openquake.calculators.event_based.strip_zeros(gmf_df)[source]

event_based_risk module

class openquake.calculators.event_based_risk.EventBasedRiskCalculator(oqparam, calc_id)[source]

Bases: openquake.calculators.event_based.EventBasedCalculator

Event based risk calculator generating event loss tables

accept_precalc = ['scenario', 'event_based', 'event_based_risk', 'ebrisk']
agg_dicts(dummy, dic)[source]
Parameters
  • dummy – unused parameter

  • dic – dictionary with keys “avg”, “alt”

build_aggcurves()[source]
core_task(full_lt, oqparam, dstore, monitor)
Parameters
  • proxies – list of RuptureProxies with the same trt_smr

  • full_lt – a FullLogicTree instance

  • oqparam – input parameters

  • monitor – a Monitor instance

Returns

a dictionary of arrays

create_avg_losses()[source]
execute()[source]

Compute risk from GMFs or ruptures depending on what is stored

gen_args(eids)[source]
Yields

pairs (gmf_slice, param)

is_stochastic = True
log_info(eids)[source]

Printing some information about the risk calculation

post_execute(dummy)[source]

Compute and store average losses from the risk_by_event dataset, and then loss curves and maps.

pre_execute()[source]

Check if there is a previous calculation ID. If yes, read the inputs by retrieving the previous calculation; if not, read the inputs directly.

precalc = 'event_based'
openquake.calculators.event_based_risk.aggreg(outputs, crmodel, ARK, aggids, rlz_id, monitor)[source]
Returns

(avg_losses, agg_loss_table)

openquake.calculators.event_based_risk.average_losses(ln, alt, rlz_id, AR, collect_rlzs)[source]
Returns

a sparse coo matrix with the losses per asset and realization

openquake.calculators.event_based_risk.ebrisk(proxies, full_lt, oqparam, dstore, monitor)[source]
Parameters
  • proxies – list of RuptureProxies with the same trt_smr

  • full_lt – a FullLogicTree instance

  • oqparam – input parameters

  • monitor – a Monitor instance

Returns

a dictionary of arrays

openquake.calculators.event_based_risk.event_based_risk(df, oqparam, dstore, monitor)[source]
Parameters
  • df – a DataFrame of GMFs with fields sid, eid, gmv_X, …

  • oqparam – parameters coming from the job.ini

  • dstore – a DataStore instance

  • monitor – a Monitor instance

Returns

a dictionary of arrays

openquake.calculators.event_based_risk.fast_agg(keys, values, correl, li, acc)[source]
Parameters
  • keys – an array of N uint64 numbers encoding (event_id, agg_id)

  • values – an array of (N, D) floats

  • correl – True if there is asset correlation

  • li – loss type index

  • acc – dictionary unique key -> array(L, D)

event_based_damage module

class openquake.calculators.event_based_damage.DamageCalculator(oqparam, calc_id)[source]

Bases: openquake.calculators.event_based_risk.EventBasedRiskCalculator

Damage calculator

accept_precalc = ['scenario', 'event_based', 'event_based_risk', 'event_based_damage']
combine(acc, res)[source]
Parameters
  • acc – unused

  • res – DataFrame with fields (event_id, agg_id, loss_id, dmg1 …) plus array with damages and consequences of shape (A, Dc)

Combine the results and grows risk_by_event with fields (event_id, agg_id, loss_id) and (dmg_0, dmg_1, dmg_2, …)

core_task(oqparam, dstore, monitor)
Parameters
  • df – a DataFrame of GMFs with fields sid, eid, gmv_X, …

  • oqparam – parameters coming from the job.ini

  • dstore – a DataStore instance

  • monitor – a Monitor instance

Returns

(damages (eid, kid) -> LDc plus damages (A, Dc))

create_avg_losses()[source]

Do nothing: there are no losses in the DamageCalculator

execute()[source]

Compute risk from GMFs or ruptures depending on what is stored

is_stochastic = True
post_execute(dummy)[source]

Store damages-rlzs/stats, aggrisk and aggcurves

precalc = 'event_based'
openquake.calculators.event_based_damage.event_based_damage(df, oqparam, dstore, monitor)[source]
Parameters
  • df – a DataFrame of GMFs with fields sid, eid, gmv_X, …

  • oqparam – parameters coming from the job.ini

  • dstore – a DataStore instance

  • monitor – a Monitor instance

Returns

(damages (eid, kid) -> LDc plus damages (A, Dc))

openquake.calculators.event_based_damage.zero_dmgcsq(A, R, crmodel)[source]
Returns

an array of zeros of shape (A, R, L, Dc)

post_risk module

class openquake.calculators.post_risk.PostRiskCalculator(oqparam, calc_id)[source]

Bases: openquake.calculators.base.RiskCalculator

Compute losses and loss curves starting from an event loss table.

execute()[source]

Parallelize on the riskinputs and returns a dictionary of results. Require a .core_task to be defined with signature (riskinputs, crmodel, param, monitor).

post_execute(dummy)[source]

Sanity checks and save agg_curves-stats

pre_execute()[source]

Check if there is a previous calculation ID. If yes, read the inputs by retrieving the previous calculation; if not, read the inputs directly.

openquake.calculators.post_risk.build_aggcurves(items, builder)[source]
Parameters
  • items – a list of pairs ((agg_id, rlz_id, loss_id), losses)

  • builder – a LossCurvesMapsBuilder instance

openquake.calculators.post_risk.fix_dtype(dic, dtype, names)[source]
openquake.calculators.post_risk.fix_dtypes(dic)[source]

Fix the dtypes of the given columns inside a dictionary (to be called before conversion to a DataFrame)

openquake.calculators.post_risk.get_loss_builder(dstore, return_periods=None, loss_dt=None, num_events=None)[source]
Parameters

dstore – datastore for an event based risk calculation

Returns

a LossCurvesMapsBuilder instance

openquake.calculators.post_risk.get_src_loss_table(dstore, loss_id)[source]
Returns

(source_ids, array of losses of shape Ns)

openquake.calculators.post_risk.post_aggregate(calc_id: int, aggregate_by)[source]

Re-run the postprocessing after an event based risk calculation

openquake.calculators.post_risk.reagg_idxs(num_tags, tagnames)[source]
Parameters
  • num_tags – dictionary tagname -> number of tags with that tagname

  • tagnames – subset of tagnames of interest

Returns

T = T1 x … X TN indices with repetitions

Reaggregate indices. Consider for instance a case with 3 tagnames, taxonomy (4 tags), region (3 tags) and country (2 tags):

>>> num_tags = dict(taxonomy=4, region=3, country=2)

There are T = T1 x T2 x T3 = 4 x 3 x 2 = 24 combinations. The function will return 24 reaggregated indices with repetions depending on the selected subset of tagnames.

For instance reaggregating by taxonomy and region would give:

>>> list(reagg_idxs(num_tags, ['taxonomy', 'region']))  # 4x3
[0, 0, 1, 1, 2, 2, 3, 3, 4, 4, 5, 5, 6, 6, 7, 7, 8, 8, 9, 9, 10, 10, 11, 11]

Reaggregating by taxonomy and country would give:

>>> list(reagg_idxs(num_tags, ['taxonomy', 'country']))  # 4x2
[0, 1, 0, 1, 0, 1, 2, 3, 2, 3, 2, 3, 4, 5, 4, 5, 4, 5, 6, 7, 6, 7, 6, 7]

Reaggregating by region and country would give:

>>> list(reagg_idxs(num_tags, ['region', 'country']))  # 3x2
[0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5, 0, 1, 2, 3, 4, 5]

Here is an example of single tag aggregation:

>>> list(reagg_idxs(num_tags, ['taxonomy']))  # 4
[0, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 1, 2, 2, 2, 2, 2, 2, 3, 3, 3, 3, 3, 3]
openquake.calculators.post_risk.save_curve_stats(dstore)[source]

Save agg_curves-stats

openquake.calculators.post_risk.store_agg(dstore, rbe_df, num_events)[source]

Build the aggrisk and aggcurves tables from the risk_by_event table

reportwriter module

Utilities to build a report writer generating a .rst report for a calculation

class openquake.calculators.reportwriter.ReportWriter(dstore)[source]

Bases: object

A particularly smart view over the datastore

add(name, obj=None)[source]

Add the view named name to the report text

make_report()[source]

Build the report and return a restructed text string

save(fname)[source]

Save the report

title = {'avglosses_data_transfer': 'Estimated data transfer for the avglosses', 'biggest_ebr_gmf': 'Maximum memory allocated for the GMFs', 'disagg_by_grp': 'Disaggregation by source group', 'exposure_info': 'Exposure model', 'inputs': 'Input files', 'job_info': 'Data transfer', 'params': 'Parameters', 'performance': 'Slowest operations', 'required_params_per_trt': 'Required parameters per tectonic region type', 'ruptures_events': 'Specific information for event based', 'slow_sources': 'Slowest sources', 'task:start_classical:-1': 'Slowest task', 'task:start_classical:0': 'Fastest task', 'task_info': 'Information about the tasks', 'weight_by_src': 'Computation times by source typology'}
openquake.calculators.reportwriter.build_report(job_ini, output_dir=None)[source]

Write a report.csv file with information about the calculation without running it

Parameters
  • job_ini – full pathname of the job.ini file

  • output_dir – the directory where the report is written (default the input directory)

openquake.calculators.reportwriter.indent(text)[source]

scenario_damage module

views module

class openquake.calculators.views.GmpeExtractor(dstore)[source]

Bases: object

extract(trt_smrs, rlz_ids)[source]
class openquake.calculators.views.Source(source_id, code, num_ruptures, checksum)

Bases: tuple

checksum

Alias for field number 3

code

Alias for field number 1

num_ruptures

Alias for field number 2

source_id

Alias for field number 0

openquake.calculators.views.alt_to_many_columns(alt, loss_types)[source]
openquake.calculators.views.avglosses_data_transfer(token, dstore)[source]

Determine the amount of average losses transferred from the workers to the controller node in a risk calculation.

openquake.calculators.views.binning_error(values, eids, nbins=10)[source]
Parameters
  • values – E values

  • eids – E integer event indices

Returns

std/mean for the sums of the values

Group the values in nbins depending on the eids and returns the variability of the sums relative to the mean.

openquake.calculators.views.dt(names)[source]
Parameters

names – list or a string with space-separated names

Returns

a numpy structured dtype

openquake.calculators.views.form(value)[source]

Format numbers in a nice way.

>>> form(0)
'0'
>>> form(0.0)
'0.0'
>>> form(0.0001)
'1.000E-04'
>>> form(1003.4)
'1_003'
>>> form(103.41)
'103.4'
>>> form(9.3)
'9.30000'
>>> form(-1.2)
'-1.2'
openquake.calculators.views.portfolio_dmgdist(token, dstore)[source]

The portfolio damages extracted from the first realization of damages-rlzs

openquake.calculators.views.reduce_srcids(srcids)[source]
openquake.calculators.views.short_repr(lst)[source]
openquake.calculators.views.stats(name, array, *extras)[source]

Returns statistics from an array of numbers.

Parameters

name – a descriptive string

Returns

(name, mean, rel_std, min, max, len) + extras

openquake.calculators.views.sum_table(records)[source]

Used to compute summaries. The records are assumed to have numeric fields, except the first field which is ignored, since it typically contains a label. Here is an example:

>>> sum_table([('a', 1), ('b', 2)])
['total', 3]
openquake.calculators.views.text_table(data, header=None, fmt=None, ext='rst')[source]

Build a .rst (or .org) table from a matrix or a DataFrame

>>> tbl = [['a', 1], ['b', 2]]
>>> print(text_table(tbl, header=['Name', 'Value']))
+------+-------+
| Name | Value |
+------+-------+
| a    | 1     |
+------+-------+
| b    | 2     |
+------+-------+
openquake.calculators.views.to_str(arr)[source]
openquake.calculators.views.tup2str(tups)[source]
openquake.calculators.views.view_agg_id(token, dstore)[source]

Show the available aggregations

openquake.calculators.views.view_assets_by_site(token, dstore)[source]

Display statistical information about the distribution of the assets

openquake.calculators.views.view_bad_ruptures(token, dstore)[source]

Display the ruptures degenerating to a point

openquake.calculators.views.view_branches(token, dstore)[source]

Show info about the branches in the logic tree

openquake.calculators.views.view_branchsets(token, dstore)[source]

Show the branchsets in the logic tree

openquake.calculators.views.view_collapsible(token, dstore)[source]

Show how much the ruptures are collapsed for each site

openquake.calculators.views.view_composite_source_model(token, dstore)[source]

Show the structure of the CompositeSourceModel in terms of grp_id

openquake.calculators.views.view_contents(token, dstore)[source]

Returns the size of the contents of the datastore and its total size

openquake.calculators.views.view_delta_loss(token, dstore)[source]

Estimate the stocastic error on the loss curve by splitting the events in odd and even. Example:

$ oq show delta_loss # consider the first loss type

openquake.calculators.views.view_disagg_by_grp(token, dstore)[source]

Show the source groups contributing the most to the highest IML

openquake.calculators.views.view_disagg_times(token, dstore)[source]

Display slow tasks for disaggregation

openquake.calculators.views.view_ebrups_by_mag(token, dstore)[source]

Show how many event based ruptures there are for each magnitude

openquake.calculators.views.view_eff_ruptures(token, dstore)[source]
openquake.calculators.views.view_event_based_mfd(token, dstore)[source]

Compare n_occ/eff_time with occurrence_rate

openquake.calculators.views.view_event_loss_table(token, dstore)[source]

Display the top 20 losses of the event loss table for the first loss type

$ oq show event_loss_table

openquake.calculators.views.view_event_rates(token, dstore)[source]

Show the number of events per realization multiplied by risk_time/eff_time

openquake.calculators.views.view_events_by_mag(token, dstore)[source]

Show how many events there are for each magnitude

openquake.calculators.views.view_exposure_info(token, dstore)[source]

Display info about the exposure model

openquake.calculators.views.view_extreme(token, dstore)[source]

Show sites where the mean hazard map reaches maximum values

openquake.calculators.views.view_extreme_gmvs(token, dstore)[source]

Display table of extreme GMVs with fields (eid, gmv_0, sid, rlz. rup)

openquake.calculators.views.view_full_lt(token, dstore)[source]
openquake.calculators.views.view_fullreport(token, dstore)[source]

Display an .rst report about the computation

openquake.calculators.views.view_global_gmfs(token, dstore)[source]

Display GMFs on the first IMT averaged on everything for debugging purposes

openquake.calculators.views.view_global_hazard(token, dstore)[source]

Display the global hazard for the calculation. This is used for debugging purposes when comparing the results of two calculations.

openquake.calculators.views.view_global_hmaps(token, dstore)[source]

Display the global hazard maps for the calculation. They are used for debugging purposes when comparing the results of two calculations. They are the mean over the sites of the mean hazard maps.

openquake.calculators.views.view_gmf(token, dstore)[source]

Display a mean gmf for debugging purposes

openquake.calculators.views.view_gmvs(token, dstore)[source]

Show the GMVs on a given site ID

openquake.calculators.views.view_gmvs_to_hazard(token, dstore)[source]

Show the number of GMFs over the highest IML

openquake.calculators.views.view_gsim_for_event(token, dstore)[source]

Display the GSIM used when computing the GMF for the given event:

$ oq show gsim_for_event:123 -1 [BooreAtkinson2008]

openquake.calculators.views.view_inputs(token, dstore)[source]
openquake.calculators.views.view_job_info(token, dstore)[source]

Determine the amount of data transferred from the controller node to the workers and back in a classical calculation.

openquake.calculators.views.view_maximum_intensity(token, dstore)[source]

Show intensities at minimum and maximum distance for the highest magnitude

openquake.calculators.views.view_mean_disagg(token, dstore)[source]

Display mean quantities for the disaggregation. Useful for checking differences between two calculations.

openquake.calculators.views.view_mean_perils(token, dstore)[source]

For instance oq show mean_perils

openquake.calculators.views.view_num_units(token, dstore)[source]

Display the number of units by taxonomy

openquake.calculators.views.view_params(token, dstore)[source]
openquake.calculators.views.view_performance(token, dstore)[source]

Display performance information

openquake.calculators.views.view_portfolio_damage(token, dstore)[source]

The mean full portfolio damage for each loss type, extracted from the average damages

openquake.calculators.views.view_portfolio_loss(token, dstore)[source]

The mean portfolio loss for each loss type, extracted from the event loss table.

openquake.calculators.views.view_portfolio_losses(token, dstore)[source]

The losses for the full portfolio, for each realization and loss type, extracted from the event loss table.

openquake.calculators.views.view_required_params_per_trt(token, dstore)[source]

Display the parameters needed by each tectonic region type

openquake.calculators.views.view_rlz(token, dstore)[source]

Show info about a given realization in the logic tree Example:

$ oq show rlz:0 -1

openquake.calculators.views.view_rup_stats(token, dstore)[source]

Show the statistics of event based ruptures

openquake.calculators.views.view_rupture(token, dstore)[source]

Show a rupture with its geometry

openquake.calculators.views.view_ruptures_events(token, dstore)[source]
openquake.calculators.views.view_short_source_info(token, dstore, maxrows=20)[source]
openquake.calculators.views.view_slow_ruptures(token, dstore, maxrows=25)[source]

Show the slowest ruptures

openquake.calculators.views.view_slow_sources(token, dstore, maxrows=20)[source]

Returns the slowest sources

openquake.calculators.views.view_source_data(token, dstore)[source]

Display info about a given task. Here is an example:

$ oq show source_data:42
openquake.calculators.views.view_src_groups(token, dstore)[source]

Show the hazard contribution of each source group

openquake.calculators.views.view_sum(token, dstore)[source]

Show the sum of an array of shape (A, R, L, …) on the first axis

openquake.calculators.views.view_task_durations(token, dstore)[source]

Display the raw task durations. Here is an example of usage:

$ oq show task_durations
openquake.calculators.views.view_task_ebrisk(token, dstore)[source]

Display info about ebrisk tasks:

$ oq show task_ebrisk:-1 # the slowest task

openquake.calculators.views.view_task_hazard(token, dstore)[source]

Display info about a given task. Here are a few examples of usage:

$ oq show task:classical:0  # the fastest task
$ oq show task:classical:-1  # the slowest task
openquake.calculators.views.view_task_info(token, dstore)[source]

Display statistical information about the tasks performance. It is possible to get full information about a specific task with a command like this one, for a classical calculation:

$ oq show task_info:classical
openquake.calculators.views.view_totlosses(token, dstore)[source]

This is a debugging view. You can use it to check that the total losses, i.e. the losses obtained by summing the average losses on all assets are indeed equal to the aggregate losses. This is a sanity check for the correctness of the implementation.

openquake.calculators.views.view_worst_sources(token, dstore)[source]

Returns the sources with worst weights

openquake.calculators.views.view_zero_losses(token, dstore)[source]

Sanity check on avg_losses and avg_gmf

extract module

class openquake.calculators.extract.Extract[source]

Bases: dict

A callable dictionary of functions with a single instance called extract. Then extract(dstore, fullkey) dispatches to the function determined by the first part of fullkey (a slash-separated string) by passing as argument the second part of fullkey.

For instance extract(dstore, ‘sitecol’).

add(key, cache=False)[source]
class openquake.calculators.extract.Extractor(calc_id)[source]

Bases: object

A class to extract data from a calculation.

Parameters

calc_id – a calculation ID

NB: instantiating the Extractor opens the datastore.

close()[source]

Close the datastore

get(what, asdict=False)[source]
Parameters

what – what to extract

Returns

an ArrayWrapper instance or a dictionary if asdict is True

class openquake.calculators.extract.RuptureData(trt, gsims)[source]

Bases: object

Container for information about the ruptures of a given tectonic region type.

to_array(proxies)[source]

Convert a list of rupture proxies into an array of dtype RuptureRata.dt

exception openquake.calculators.extract.WebAPIError[source]

Bases: RuntimeError

Wrapper for an error on a WebAPI server

class openquake.calculators.extract.WebExtractor(calc_id, server=None, username=None, password=None)[source]

Bases: openquake.calculators.extract.Extractor

A class to extract data from the WebAPI.

Parameters
  • calc_id – a calculation ID

  • server – hostname of the webapi server (can be ‘’)

  • username – login username (can be ‘’)

  • password – login password (can be ‘’)

NB: instantiating the WebExtractor opens a session.

close()[source]

Close the session

dump(fname)[source]

Dump the remote datastore on a local path.

get(what)[source]
Parameters

what – what to extract

Returns

an ArrayWrapper instance

openquake.calculators.extract.avglosses(dstore, loss_types, kind)[source]
Returns

an array of average losses of shape (A, R, L)

openquake.calculators.extract.barray(iterlines)[source]

Array of bytes

openquake.calculators.extract.build_csq_dt(dstore)[source]
Parameters

dstore – a datastore instance

Returns

a composite dtype loss_type -> (csq1, csq2, …)

openquake.calculators.extract.build_damage_array(data, damage_dt)[source]
Parameters
  • data – an array of shape (A, L, D)

  • damage_dt – a damage composite data type loss_type -> states

Returns

a composite array of length N and dtype damage_dt

openquake.calculators.extract.build_damage_dt(dstore)[source]
Parameters

dstore – a datastore instance

Returns

a composite dtype loss_type -> (ds1, ds2, …)

openquake.calculators.extract.cast(loss_array, loss_dt)[source]
openquake.calculators.extract.clusterize(hmaps, rlzs, k)[source]
Parameters
  • hmaps – array of shape (R, M, P)

  • rlzs – composite array of shape R

  • k – number of clusters to build

Returns

(array(K, MP), labels(R))

openquake.calculators.extract.crm_attrs(dstore, what)[source]
Returns

the attributes of the risk model, i.e. limit_states, loss_types, min_iml and covs, needed by the risk exporters.

openquake.calculators.extract.extract_(dstore, dspath)[source]

Extracts an HDF5 path object from the datastore, for instance extract(dstore, ‘sitecol’).

openquake.calculators.extract.extract_agg_curves(dstore, what)[source]

Aggregate loss curves from the ebrisk calculator:

/extract/agg_curves?kind=stats,absolute=1&loss_type=occupants&occupancy=RES

Returns an array of shape (P, S, …)

openquake.calculators.extract.extract_agg_damages(dstore, what)[source]

Aggregate damages of the given loss type and tags. Use it as /extract/agg_damages/structural?taxonomy=RC&custom_site_id=20126

Returns

array of shape (R, D), being R the number of realizations and D the number of damage states, or an array of length 0 if there is no data for the given tags

openquake.calculators.extract.extract_agg_losses(dstore, what)[source]

Aggregate losses of the given loss type and tags. Use it as /extract/agg_losses/structural?taxonomy=RC&custom_site_id=20126 /extract/agg_losses/structural?taxonomy=RC&custom_site_id=*

Returns

an array of shape (T, R) if one of the tag names has a * value an array of shape (R,), being R the number of realizations an array of length 0 if there is no data for the given tags

openquake.calculators.extract.extract_aggregate(dstore, what)[source]

/extract/aggregate/avg_losses? kind=mean&loss_type=structural&tag=taxonomy&tag=occupancy

openquake.calculators.extract.extract_asset_risk(dstore, what)[source]

Extract an array of assets + risk fields, optionally filtered by tag. Use it as /extract/asset_risk?taxonomy=RC&taxonomy=MSBC&occupancy=RES

openquake.calculators.extract.extract_asset_tags(dstore, tagname)[source]

Extract an array of asset tags for the given tagname. Use it as /extract/asset_tags or /extract/asset_tags/taxonomy

openquake.calculators.extract.extract_assets(dstore, what)[source]

Extract an array of assets, optionally filtered by tag. Use it as /extract/assets?taxonomy=RC&taxonomy=MSBC&occupancy=RES

openquake.calculators.extract.extract_avg_gmf(dstore, what)[source]
openquake.calculators.extract.extract_csq_curves(dstore, what)[source]

Aggregate damages curves from the event_based_damage calculator:

/extract/csq_curves?agg_id=0&loss_type=occupants

Returns an ArrayWrapper of shape (P, D1) with attribute return_periods

openquake.calculators.extract.extract_damages_npz(dstore, what)[source]
openquake.calculators.extract.extract_disagg(dstore, what)[source]

Extract a disaggregation output as a 2D array. Example: http://127.0.0.1:8800/v1/calc/30/extract/ disagg?kind=Mag_Dist&imt=PGA&poe_id=0&site_id=1&traditional=1

openquake.calculators.extract.extract_disagg_by_src(dstore, what)[source]

Extract the disagg_by_src information Example: http://127.0.0.1:8800/v1/calc/30/extract/disagg_by_src?site_id=0&imt_id=0&rlz_id=0&lvl_id=-1

openquake.calculators.extract.extract_disagg_layer(dstore, what)[source]

Extract a disaggregation layer containing all sites and outputs Example: http://127.0.0.1:8800/v1/calc/30/extract/disagg_layer?

openquake.calculators.extract.extract_effect(dstore, what)[source]

Extracts the effect of ruptures. Use it as /extract/effect

openquake.calculators.extract.extract_eids_by_gsim(dstore, what)[source]

Returns a dictionary gsim -> event_ids for the first TRT Example: http://127.0.0.1:8800/v1/calc/30/extract/eids_by_gsim

openquake.calculators.extract.extract_event_info(dstore, eidx)[source]

Extract information about the given event index. Example: http://127.0.0.1:8800/v1/calc/30/extract/event_info/0

openquake.calculators.extract.extract_exposure_metadata(dstore, what)[source]

Extract the loss categories and the tags of the exposure. Use it as /extract/exposure_metadata

openquake.calculators.extract.extract_extreme_event(dstore, eidx)[source]

Extract information about the given event index. Example: http://127.0.0.1:8800/v1/calc/30/extract/extreme_event

openquake.calculators.extract.extract_gmf_npz(dstore, what)[source]
openquake.calculators.extract.extract_gridded_sources(dstore, what)[source]

Extract information about the gridded sources (requires ps_grid_spacing) Use it as /extract/gridded_sources?task_no=0. Returns a json string id -> lonlats

openquake.calculators.extract.extract_gsims_by_trt(dstore, what)[source]

Extract the dictionary gsims_by_trt

openquake.calculators.extract.extract_hcurves(dstore, what)[source]

Extracts hazard curves. Use it as /extract/hcurves?kind=mean&imt=PGA or /extract/hcurves?kind=rlz-0&imt=SA(1.0)

openquake.calculators.extract.extract_hmaps(dstore, what)[source]

Extracts hazard maps. Use it as /extract/hmaps?imt=PGA

openquake.calculators.extract.extract_losses_by_asset(dstore, what)[source]
openquake.calculators.extract.extract_mean_by_rup(dstore, what)[source]

Extract src_id, rup_id, mean from the stored contexts Example: http://127.0.0.1:8800/v1/calc/30/extract/mean_by_rup

openquake.calculators.extract.extract_mean_std_curves(dstore, what)[source]

Yield imls/IMT and poes/IMT containg mean and stddev for all sites

openquake.calculators.extract.extract_mfd(dstore, what)[source]

Compare n_occ/eff_time with occurrence_rate. Example: http://127.0.0.1:8800/v1/calc/30/extract/event_based_mfd?

openquake.calculators.extract.extract_num_events(dstore, what)[source]
Returns

the number of events (if any)

openquake.calculators.extract.extract_oqparam(dstore, dummy)[source]

Extract job parameters as a JSON npz. Use it as /extract/oqparam

openquake.calculators.extract.extract_realizations(dstore, dummy)[source]

Extract an array of realizations. Use it as /extract/realizations

openquake.calculators.extract.extract_relevant_events(dstore, dummy=None)[source]

Extract the relevant events Example: http://127.0.0.1:8800/v1/calc/30/extract/events

openquake.calculators.extract.extract_risk_stats(dstore, what)[source]

Extract the risk statistics from a DataFrame. Example: http://127.0.0.1:8800/v1/calc/30/extract/risk_stats/aggcurves

openquake.calculators.extract.extract_rup_ids(dstore, what)[source]

Extract src_id, rup_id from the stored contexts Example: http://127.0.0.1:8800/v1/calc/30/extract/rup_ids

openquake.calculators.extract.extract_rups_by_mag_dist(dstore, what)[source]

Extracts the number of ruptures by mag, dist. Use it as /extract/rups_by_mag_dist

openquake.calculators.extract.extract_rupture_info(dstore, what)[source]

Extract some information about the ruptures, including the boundary. Example: http://127.0.0.1:8800/v1/calc/30/extract/rupture_info?min_mag=6

openquake.calculators.extract.extract_ruptures(dstore, what)[source]

Extract the ruptures with their geometry as a big CSV string Example: http://127.0.0.1:8800/v1/calc/30/extract/ruptures?min_mag=6

openquake.calculators.extract.extract_sitecol(dstore, what)[source]

Extracts the site collection array (not the complete object, otherwise it would need to be pickled). Use it as /extract/sitecol?field=vs30

openquake.calculators.extract.extract_source_data(dstore, what)[source]

Extract performance information about the sources. Use it as /extract/source_data?

openquake.calculators.extract.extract_sources(dstore, what)[source]

Extract information about a source model. Use it as /extract/sources?limit=10 or /extract/sources?source_id=1&source_id=2 or /extract/sources?code=A&code=B

openquake.calculators.extract.extract_task_info(dstore, what)[source]

Extracts the task distribution. Use it as /extract/task_info?kind=classical

openquake.calculators.extract.extract_uhs(dstore, what)[source]

Extracts uniform hazard spectra. Use it as /extract/uhs?kind=mean or /extract/uhs?kind=rlz-0, etc

openquake.calculators.extract.extract_weights(dstore, what)[source]

Extract the realization weights

openquake.calculators.extract.get_info(dstore)[source]
Returns

a dict with ‘stats’, ‘loss_types’, ‘num_rlzs’, ‘tagnames’, etc

openquake.calculators.extract.get_loss_type_tags(what)[source]
openquake.calculators.extract.get_ruptures_within(dstore, bbox)[source]

Extract the ruptures within the given bounding box, a string minlon,minlat,maxlon,maxlat. Example: http://127.0.0.1:8800/v1/calc/30/extract/ruptures_with/8,44,10,46

openquake.calculators.extract.get_sites(sitecol, complete=True)[source]
Returns

a lon-lat or lon-lat-depth array depending if the site collection is at sea level or not; if there is a custom_site_id, prepend it

openquake.calculators.extract.hazard_items(dic, sites, *extras, **kw)[source]
Parameters
  • dic – dictionary of arrays of the same shape

  • sites – a sites array with lon, lat fields of the same length

  • extras – optional triples (field, dtype, values)

  • kw – dictionary of parameters (like investigation_time)

Returns

a list of pairs (key, value) suitable for storage in .npz format

openquake.calculators.extract.lit_eval(string)[source]

ast.literal_eval the string if possible, otherwise returns it unchanged

openquake.calculators.extract.norm(qdict, params)[source]
openquake.calculators.extract.parse(query_string, info={})[source]
Returns

a normalized query_dict as in the following examples:

>>> parse('kind=stats', {'stats': {'mean': 0, 'max': 1}})
{'kind': ['mean', 'max'], 'k': [0, 1], 'rlzs': False}
>>> parse('kind=rlzs', {'stats': {}, 'num_rlzs': 3})
{'kind': ['rlz-000', 'rlz-001', 'rlz-002'], 'k': [0, 1, 2], 'rlzs': True}
>>> parse('kind=mean', {'stats': {'mean': 0, 'max': 1}})
{'kind': ['mean'], 'k': [0], 'rlzs': False}
>>> parse('kind=rlz-3&imt=PGA&site_id=0', {'stats': {}})
{'kind': ['rlz-3'], 'imt': ['PGA'], 'site_id': [0], 'k': [3], 'rlzs': True}
openquake.calculators.extract.read_ebrupture(dstore, rup_id)[source]
Parameters
  • dstore – a DataStore instance

  • rup_id – an integer rupture ID

Returns

an EBRupture instance

openquake.calculators.extract.sanitize(query_string)[source]

Replace /, ?, & characters with underscores and ‘=’ with ‘-‘