Unsequa - a module for uncertainty and sensitivity analysis

This is a tutorial for the unsequa module in CLIMADA. A detailled description can be found in `Kropf (2021) <>`__.

Table of Contents

  • 1  Uncertainty and sensitivity analysis?

  • 2  Unsequa Module Structure

  • 3  InputVar

    • 3.1  Example - custom continuous uncertainty parameter

    • 3.2  Example - custom categorical uncertainty parameter

  • 4  UncOutput

    • 4.1  Example from file

  • 5  CalcImpact

    • 5.1  Set the InputVars

    • 5.2  Compute uncertainty and sensitivity using default methods

    • 5.3  A few non-default parameters

  • 6  CalcCostBenefit

    • 6.1  Set the InputVars

    • 6.2  Compute cost benefit uncertainty and sensitivity using default methods

Uncertainty and sensitivity analysis?

Before doing an uncertainty quantification in CLIMADA, it is imperative that you get first comfortable with the different notions of uncertainty in the modelling world (see e.g.Pianosi (2016) or Douglas-Smith(2020) for a review). In particular, note that the uncertaintity values will only be as good as the input from the user. In addition, not all uncertainties can be numerically quantified, and even worse, some unkonwns are unknown. This means that sometimes, quantifying uncertainty can lead to false confidence in the output!. For a more philosophical discussion about the types of uncertainties in climate research see Knüsel (2020) and `Otth (2022) <>`__.

In this module, it is possible to perform global uncertainty analysis, as well as a sensitivity analysis. The word global is meant as opposition to the ‘one-factor-at-a-time’ (OAT) strategy. The OAT strategy, which consists in analyzing the effect of varying one model input factor at a time while keeping all other fixed, is popular among modellers, but has major shortcomings Saltelli (2010), Saltelli(2019) and should not be used.

A rough schemata of how to perform uncertainty and sensitivity analysis (taken from `Kropf(2021) <>`__)

Uncertainty and Sensitivity analysis

  1. `Kropf, C.M. et al. Uncertainty and sensitivity analysis for global probabilistic weather and climate risk modelling: an implementation in the CLIMADA platform (2021) <>`__

  2. Pianosi, F. et al. Sensitivity analysis of environmental models: A systematic review with practical workflow. Environmental Modelling & Software 79, 214–232 (2016). 3.Douglas-Smith, D., Iwanaga, T., Croke, B. F. W. & Jakeman, A. J. Certain trends in uncertainty and sensitivity analysis: An overview of software tools and techniques. Environmental Modelling & Software 124, 104588 (2020)

  3. Knüsel, B. Epistemological Issues in Data-Driven Modeling in Climate Research. (ETH Zurich, 2020)

  4. Saltelli, A. et al. Why so many published sensitivity analyses are false: A systematic review of sensitivity analysis practices. Environmental Modelling & Software 114, 29–39 (2019)

  5. Saltelli, A. & Annoni, P. How to avoid a perfunctory sensitivity analysis. Environmental Modelling & Software 25, 1508–1517 (2010)

Unsequa Module Structure

The unsequa module contains several key classes.

The model input parameters and their distribution are specified as - InputVar: defines input uncertainty variables

The input parameter sampling, Monte-Carlo uncertainty distribution calculation and the sensitivity index computation are done in - CalcImpact: compute uncertainties for outputs of climada.engine.impact.calc (child class of Calc) - CalcCostBenefit: compute uncertainties for outputs of climada.engine.cost_benefit.calc (child class of Calc)

The results are stored in - UncOutput: store the uncertainty and sensitivity analysis results. Contains also several plotting methods. This is a class which only stores data. - UncImpactOutput: subclass with dataframes specifically for climada.engine.impact.calc uncertainty and sensitivity analysis results. - UncCostBenefitOutput: subclass with dataframes specifically for climada.engine.cost_benefit.calc uncertainty and sensitivity analysis results.

InputVar

The InputVar class is used to define uncertainty variables.

Attribute

Type

Description

func

function

Model variable defined as a function of the uncertainty input parameters

distr_dict

dict

Dictionary of the probability density distributions of the uncertainty input parameters

An input uncertainty parameter is a numerical input value that has a certain probability density distribution in your model, such as the total exposure asset value, the slope of the vulnerability function, the exponents of the litpop exposure, the value of the discount rate, the cost of an adaptation measure, …

The probability densitity distributions (values of distr_dict) of the input uncertainty parameters (keyword arguments of the func and keys of the distr_dict) can be any of the ones defined in scipy.stats.

Several helper methods exist to make generic InputVar for Exposures, ImpactFuncSet, Hazard, Entity (including DiscRates and Measures). These are described in details in the tutorial climada_engine_uncertainty_helper. These are a good bases for your own computations.

Example - custom continuous uncertainty parameter

Suppose we assume that the GDP value used to scale the exposure has a relative error of +-10%.

[1]:
import warnings
warnings.filterwarnings('ignore') #Ignore warnings for making the tutorial's pdf.

#Define the base exposure
from climada.util.constants import EXP_DEMO_H5
from climada.entity import Exposures
exp_base = Exposures.from_hdf5(EXP_DEMO_H5)
2022-01-10 21:09:45,445 - climada.entity.exposures.base - INFO - Reading /Users/ckropf/climada/demo/data/exp_demo_today.h5
[2]:
# Define the function that returns an exposure with scaled total assed value
# Here x_exp is the input uncertainty parameter and exp_func the inputvar.func.
def exp_func(x_exp, exp_base=exp_base):
    exp = exp_base.copy()
    exp.gdf.value *= x_exp
    return exp
[3]:
# Define the Uncertainty Variable with +-10% total asset value
# The probability density distribution of the input uncertainty parameter x_exp is sp.stats.uniform(0.9, 0.2)
from climada.engine.unsequa import InputVar
import scipy as sp

exp_distr = {"x_exp": sp.stats.uniform(0.9, 0.2),
              }
exp_iv = InputVar(exp_func, exp_distr)
[4]:
# Uncertainty parameters
exp_iv.labels
[4]:
['x_exp']
[5]:
# Evaluate for a given value of the uncertainty parameters
exp095 = exp_iv.func(x_exp = 0.95)
print(f"Base value is {exp_base.gdf['value'].sum()}, and the value for x_exp=0.95 is {exp095.gdf['value'].sum()}")
Base value is 657053294559.9105, and the value for x_exp=0.95 is 624200629831.9148
[6]:
# Defined distribution
exp_iv.plot(figsize=(5, 3));
../_images/tutorial_climada_engine_unsequa_21_0.png

Example - custom categorical uncertainty parameter

Suppose we want to test different exponents (m=1,2 ; n=1,2) for the LitPop exposure for the country Switzerland.

[7]:
from climada.entity import LitPop

m_min, m_max = (1, 2)
n_min, n_max = (1, 2)

# Define the function
# Note that this here works, but might be slow because the method LitPop is called everytime the the function
# is evaluated, and LitPop is relatively slow.
def litpop_cat(m, n):
    exp = Litpop.from_countries('CHE', res_arcsec=150, exponent=[m, n])
    return exp
[8]:
# A faster method would be to first create a dictionnary with all the exposures. This however
# requires more memory and precomputation time (here ~3-4mins)
exp = LitPop()
litpop_dict = {}
for m in range(m_min, m_max + 1):
    for n in range(n_min, n_max + 1):
        exp_mn = LitPop.from_countries('CHE', res_arcsec=150, exponents=[m, n]);
        litpop_dict[(m, n)] = exp_mn

def litpop_cat(m, n, litpop_dict=litpop_dict):
    return litpop_dict[(m, n)]
2022-01-10 21:09:46,371 - climada.entity.exposures.litpop.litpop - INFO -
 LitPop: Init Exposure for country: CHE (756)...

2022-01-10 21:09:46,372 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020
2022-01-10 21:09:46,373 - climada.entity.exposures.litpop.gpw_population - INFO - GPW Version v4.11
2022-01-10 21:09:47,792 - climada.util.finance - INFO - GDP CHE 2014: 7.344e+11.
2022-01-10 21:09:48,213 - climada.util.finance - INFO - GDP CHE 2018: 7.355e+11.
2022-01-10 21:09:48,223 - climada.entity.exposures.base - INFO - Hazard type not set in impf_
2022-01-10 21:09:48,224 - climada.entity.exposures.base - INFO - category_id not set.
2022-01-10 21:09:48,225 - climada.entity.exposures.base - INFO - cover not set.
2022-01-10 21:09:48,225 - climada.entity.exposures.base - INFO - deductible not set.
2022-01-10 21:09:48,226 - climada.entity.exposures.base - INFO - centr_ not set.
2022-01-10 21:09:48,504 - climada.entity.exposures.litpop.litpop - INFO -
 LitPop: Init Exposure for country: CHE (756)...

2022-01-10 21:09:48,505 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020
2022-01-10 21:09:48,505 - climada.entity.exposures.litpop.gpw_population - INFO - GPW Version v4.11
2022-01-10 21:09:49,312 - climada.util.finance - INFO - GDP CHE 2014: 7.344e+11.
2022-01-10 21:09:49,742 - climada.util.finance - INFO - GDP CHE 2018: 7.355e+11.
2022-01-10 21:09:49,751 - climada.entity.exposures.base - INFO - Hazard type not set in impf_
2022-01-10 21:09:49,752 - climada.entity.exposures.base - INFO - category_id not set.
2022-01-10 21:09:49,753 - climada.entity.exposures.base - INFO - cover not set.
2022-01-10 21:09:49,753 - climada.entity.exposures.base - INFO - deductible not set.
2022-01-10 21:09:49,754 - climada.entity.exposures.base - INFO - centr_ not set.
2022-01-10 21:09:49,976 - climada.entity.exposures.litpop.litpop - INFO -
 LitPop: Init Exposure for country: CHE (756)...

2022-01-10 21:09:49,977 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020
2022-01-10 21:09:49,977 - climada.entity.exposures.litpop.gpw_population - INFO - GPW Version v4.11
2022-01-10 21:09:50,781 - climada.util.finance - INFO - GDP CHE 2014: 7.344e+11.
2022-01-10 21:09:51,203 - climada.util.finance - INFO - GDP CHE 2018: 7.355e+11.
2022-01-10 21:09:51,213 - climada.entity.exposures.base - INFO - Hazard type not set in impf_
2022-01-10 21:09:51,214 - climada.entity.exposures.base - INFO - category_id not set.
2022-01-10 21:09:51,214 - climada.entity.exposures.base - INFO - cover not set.
2022-01-10 21:09:51,215 - climada.entity.exposures.base - INFO - deductible not set.
2022-01-10 21:09:51,216 - climada.entity.exposures.base - INFO - centr_ not set.
2022-01-10 21:09:51,546 - climada.entity.exposures.litpop.litpop - INFO -
 LitPop: Init Exposure for country: CHE (756)...

2022-01-10 21:09:51,547 - climada.entity.exposures.litpop.gpw_population - WARNING - Reference year: 2018. Using nearest available year for GPW data: 2020
2022-01-10 21:09:51,547 - climada.entity.exposures.litpop.gpw_population - INFO - GPW Version v4.11
2022-01-10 21:09:52,359 - climada.util.finance - INFO - GDP CHE 2014: 7.344e+11.
2022-01-10 21:09:52,785 - climada.util.finance - INFO - GDP CHE 2018: 7.355e+11.
2022-01-10 21:09:52,797 - climada.entity.exposures.base - INFO - Hazard type not set in impf_
2022-01-10 21:09:52,797 - climada.entity.exposures.base - INFO - category_id not set.
2022-01-10 21:09:52,798 - climada.entity.exposures.base - INFO - cover not set.
2022-01-10 21:09:52,799 - climada.entity.exposures.base - INFO - deductible not set.
2022-01-10 21:09:52,799 - climada.entity.exposures.base - INFO - centr_ not set.
[9]:
#Define the distribution dictionnary
import scipy as sp
from climada.engine.unsequa import InputVar

distr_dict = {
    'm': sp.stats.randint(low=m_min, high=m_max+1),
    'n': sp.stats.randint(low=n_min, high=n_max+1)
    }

cat_iv = InputVar(litpop_cat, distr_dict) # One can use either of the above definitions of litpop_cat
[10]:
# Uncertainty parameters
cat_iv.labels
[10]:
['m', 'n']
[11]:
cat_iv.evaluate(m=1, n=2).plot_raster();
2022-01-10 21:09:52,830 - climada.util.coordinates - INFO - Raster from resolution 0.04166666000000063 to 0.04166666000000063.
../_images/tutorial_climada_engine_unsequa_28_1.png
[12]:
cat_iv.plot(figsize=(10, 3));
../_images/tutorial_climada_engine_unsequa_29_0.png

UncOutput

The UncOutput class is used to store data from sampling, uncertainty and sensitivity analysis. An UncOutput object can be saved and loaded from .hdf5. The classes UncImpactOuput and UncCostBenefitOutput are extensions of UncOutput specific for CalcImpact and CalcCostBenefit, respectively.

Data attributes

Attribute

Type

Description

samples_df

pandas.dataframe

Each row represents a sample obtained from the input parameters (one per column) distributions

UncImpactOutput

aai_agg_unc_df

pandas.dataframe

Uncertainty data for aai_agg

tot_value_unc_df

pandas.dataframe

Uncertainty data for tot_value.

freq_curve_unc_df

pandas.dataframe

Uncertainty data for freq_curve. One return period per column.

eai_exp_unc_df

pandas.dataframe

Uncertainty data for eai_exp. One exposure point per column.

at_event_unc_df

pandas.dataframe

Uncertainty data for at_event. One event per column.

UncCostBenefitOutput

imp_meas_present_unc_df

pandas.dataframe

Uncertainty data for imp_meas_present. One measure per column.

imp_meas_future_unc_df

pandas.dataframe

Uncertainty data for imp_meas_present. One measure per column

tot_climate_risk_unc_df

pandas.dataframe

Uncertainty data for tot_climate_risk. One measure per column.

benefit_unc_df

pandas.dataframe

Uncertainty data for benefit. One measure per column.

cost_ben_ratio_unc_df

pandas.dataframe

Uncertainty data for cost_ben_ratio. One measure per column.

cost_benefit_kwargs

dictionary

Keyword arguments for climada.engine.cost_benefit.calc.

Metadata and input data attributes

These attributes are used for book-keeping and characterize the sample, uncertainty and sensitivity data. These attributes are set by the methods from classes CalcImpact and CalcCostBenefit used to generate sample, uncertainty and sensitivity data.

Attribute

Type

Description

sampling_method

str

The sampling method as defined in SALib. Possible choices: ‘saltelli’, ‘fast_sampler’, ‘latin’, ‘morris’, ‘dgsm’, ‘ff’

sampling_kwargs

dict

Keyword arguments for the sampling_method.

n_samples

int

Effective number of samples (number of rows of samples_df)

param_labels

list(str)

Name of all the uncertainty input parameters

problem_sa

dict

The description of the uncertainty variables and their distribution as used in SALib.

sensitivity_method

str

Sensitivity analysis method from SALib.analyse Possible choices: ‘fast’, ‘rbd_fact’, ‘morris’, ‘sobol’, ‘delta’, ‘ff’. Note that in Salib, sampling methods and sensitivity analysis methods should be used in specific pairs.

sensitivity_kwargs

dict

Keyword arguments for sensitivity_method.

unit

str

Unit of the exposures value

Example from file

Here we show an example loaded from file. In the sections below this class is extensively used and further examples can be found.

[13]:
# Download the test file from the API
# Requires internet connection
from climada.util.constants import TEST_UNC_OUTPUT_IMPACT
from climada.util.api_client import Client
apiclient = Client()
ds = apiclient.get_dataset(name=TEST_UNC_OUTPUT_IMPACT)
_target_dir, [filename] = apiclient.download_dataset(ds)
[14]:
# If you produced your own data, you do not need the API. Just replace 'filename' with the path to your file.
from climada.engine.unsequa import UncOutput
unc_imp = UncOutput.from_hdf5(filename)
2022-01-10 21:09:57,236 - climada.engine.unsequa.unc_output - INFO - Reading /Users/ckropf/climada/data/unc_output/unc_output_impact/test_unc_output_impact/v1/test_unc_output_impact.hdf5
[15]:
unc_imp.plot_uncertainty(metric_list=['aai_agg', 'tot_value'], figsize=(12,5));
../_images/tutorial_climada_engine_unsequa_40_0.png
[16]:
# Download the test file from the API
# Requires internet connection
from climada.util.constants import TEST_UNC_OUTPUT_COSTBEN
from climada.util.api_client import Client
apiclient = Client()
ds = apiclient.get_dataset(name=TEST_UNC_OUTPUT_COSTBEN)
_target_dir, [filename] = apiclient.download_dataset(ds)
[17]:
# If you produced your own data, you do not need the API. Just replace 'filename' with the path to your file.
from climada.engine.unsequa import UncOutput
unc_cb = UncOutput.from_hdf5(filename)
2022-01-10 21:09:57,901 - climada.engine.unsequa.unc_output - INFO - Reading /Users/ckropf/climada/data/unc_output/unc_output_costben/test_unc_output_costben/v1/test_unc_output_costben.hdf5
[18]:
unc_cb.get_uncertainty().tail()
[18]:
Mangroves Benef Beach nourishment Benef Seawall Benef Building code Benef Mangroves CostBen Beach nourishment CostBen Seawall CostBen Building code CostBen no measure - risk - future no measure - risk_transf - future ... Beach nourishment - cost_ins - future Seawall - risk - future Seawall - risk_transf - future Seawall - cost_meas - future Seawall - cost_ins - future Building code - risk - future Building code - risk_transf - future Building code - cost_meas - future Building code - cost_ins - future tot_climate_risk
35 2.375510e+08 1.932608e+08 234557.682554 1.584398e+08 6.347120 10.277239 4.350910e+04 66.742129 6.337592e+08 0.0 ... 1 6.335246e+08 0 1.020539e+10 1 4.753194e+08 0 1.057461e+10 1 6.337592e+08
36 9.272772e+07 7.643803e+07 9554.257314 5.501366e+07 16.260133 25.984286 1.068151e+06 192.217876 2.200547e+08 0.0 ... 1 2.200451e+08 0 1.020539e+10 1 1.650410e+08 0 1.057461e+10 1 2.200547e+08
37 1.464219e+08 1.179927e+08 192531.748810 8.979471e+07 10.297402 16.833137 5.300629e+04 117.764285 3.591788e+08 0.0 ... 1 3.589863e+08 0 1.020539e+10 1 2.693841e+08 0 1.057461e+10 1 3.591788e+08
38 9.376369e+07 7.722882e+07 10681.112247 5.555413e+07 12.965484 20.736269 7.703765e+05 153.475031 2.222165e+08 0.0 ... 1 2.222058e+08 0 8.228478e+09 1 1.666624e+08 0 8.526172e+09 1 2.222165e+08
39 9.376369e+07 7.722882e+07 10681.112247 5.555413e+07 16.080478 25.718218 9.554617e+05 190.347852 2.222165e+08 0.0 ... 1 2.222058e+08 0 1.020539e+10 1 1.666624e+08 0 1.057461e+10 1 2.222165e+08

5 rows × 29 columns

CalcImpact

Set the InputVars

In this example, we model the impact function for tropical cyclones on the parametric function suggested in Emanuel (2015) with 4 parameters. The exposures total value varies between 80% and 120%. For that hazard, we assume to have no good error estimate and thus do not define an InputVar for the hazard.

[1]:
#Define the input variable functions
import numpy as np

from climada.entity import ImpactFunc, ImpactFuncSet, Exposures
from climada.util.constants import EXP_DEMO_H5, HAZ_DEMO_H5
from climada.hazard import Hazard

def impf_func(G=1, v_half=84.7, vmin=25.7, k=3, _id=1):

    def xhi(v, v_half, vmin):
        return max([(v - vmin), 0]) / (v_half - vmin)

    def sigmoid_func(v, G, v_half, vmin, k):
        return G * xhi(v, v_half, vmin)**k / (1 + xhi(v, v_half, vmin)**k)

    #In-function imports needed only for parallel computing on Windows
    import numpy as np
    from climada.entity import ImpactFunc, ImpactFuncSet
    imp_fun = ImpactFunc()
    imp_fun.haz_type = 'TC'
    imp_fun.id = _id
    imp_fun.intensity_unit = 'm/s'
    imp_fun.intensity = np.linspace(0, 150, num=100)
    imp_fun.mdd = np.repeat(1, len(imp_fun.intensity))
    imp_fun.paa = np.array([sigmoid_func(v, G, v_half, vmin, k) for v in imp_fun.intensity])
    imp_fun.check()
    impf_set = ImpactFuncSet()
    impf_set.append(imp_fun)
    return impf_set



haz = Hazard.from_hdf5(HAZ_DEMO_H5)
exp_base = Exposures.from_hdf5(EXP_DEMO_H5)
#It is a good idea to assign the centroids to the base exposures in order to avoid repeating this
# potentially costly operation for each sample.
exp_base.assign_centroids(haz)
def exp_base_func(x_exp, exp_base):
    exp = exp_base.copy()
    exp.gdf.value *= x_exp
    return exp
from functools import partial
exp_func = partial(exp_base_func, exp_base=exp_base)
2022-01-10 21:12:30,850 - climada.hazard.base - INFO - Reading /Users/ckropf/climada/demo/data/tc_fl_1990_2004.h5
2022-01-10 21:12:30,988 - climada.entity.exposures.base - INFO - Reading /Users/ckropf/climada/demo/data/exp_demo_today.h5
2022-01-10 21:12:31,068 - climada.entity.exposures.base - INFO - Matching 50 exposures with 2500 centroids.
2022-01-10 21:12:31,070 - climada.util.coordinates - INFO - No exact centroid match found. Reprojecting coordinates to nearest neighbor closer than the threshold = 100
[2]:
# Visualization of the parametrized impact function
impf_func(G=0.8, v_half=80, vmin=30,k=5).plot();
2022-01-10 21:12:31,081 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
../_images/tutorial_climada_engine_unsequa_48_1.png
[3]:
#Define the InputVars

import scipy as sp
from climada.engine.unsequa import InputVar

exp_distr = {"x_exp": sp.stats.beta(10, 1.1)} #This is not really a reasonable distribution but is used
                                              #here to show that you can use any scipy distribution.

exp_iv = InputVar(exp_func, exp_distr)

impf_distr = {
    "G": sp.stats.truncnorm(0.5, 1.5),
    "v_half": sp.stats.uniform(35, 65),
    "vmin": sp.stats.uniform(0, 15),
    "k": sp.stats.uniform(1, 4)
    }
impf_iv = InputVar(impf_func, impf_distr)
[4]:
import matplotlib.pyplot as plt
ax = exp_iv.plot(figsize=(6,4));
plt.yticks(fontsize=16);
plt.xticks(fontsize=16);
../_images/tutorial_climada_engine_unsequa_50_0.png

Compute uncertainty and sensitivity using default methods

First, we define the UncImpact object with our uncertainty variables.

[23]:
from climada.engine.unsequa import CalcImpact

calc_imp = CalcImpact(exp_iv, impf_iv, haz)

Next, we generate samples for the uncertainty parameters using the default methods. Note that depending on the chosen Salib method, the effective number of samples differs from the input variable N. For the default ‘saltelli’, with calc_second_order=True, the effective number is N(2D+2), with D the number of uncertainty parameters. See SAlib for more information.

[24]:
output_imp = calc_imp.make_sample(N=2**7, sampling_kwargs={'skip_values': 2**8})
output_imp.get_samples_df().tail()
2022-01-10 21:09:59,022 - climada.engine.unsequa.calc_base - INFO - Effective number of made samples: 1536
[24]:
x_exp G v_half vmin k
1531 0.876684 1.242977 53.662109 2.080078 4.539062
1532 0.876684 0.790617 44.013672 2.080078 4.539062
1533 0.876684 0.790617 53.662109 13.681641 4.539062
1534 0.876684 0.790617 53.662109 2.080078 3.960938
1535 0.876684 0.790617 53.662109 2.080078 4.539062

The resulting samples can be visualized in plots.

[25]:
output_imp.plot_sample(figsize=(15,8));
../_images/tutorial_climada_engine_unsequa_57_0.png

Now we can compute the value of the impact metrics for all the samples. In this example, we additionaly chose to restrict the return periods 50, 100, and 250 years. By default, eai_exp and at_event are not stored.

[26]:
output_imp = calc_imp.uncertainty(output_imp, rp = [50, 100, 250])
2022-01-10 21:10:00,114 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:10:00,116 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:10:00,117 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:10:00,122 - climada.engine.unsequa.calc_base - INFO -

Estimated computaion time: 0:00:16.896000

The distributions of metrics ouputs are stored as dictionaries of pandas dataframe. The metrics are directly taken from the output of climada.impact.calc. For each metric, on dataframe is made.

[27]:
#All the computed uncertainty metrics attribute
output_imp.uncertainty_metrics
[27]:
['aai_agg', 'freq_curve', 'tot_value']
[28]:
#One uncertainty dataframe
output_imp.get_unc_df('aai_agg').tail()
[28]:
aai_agg
1531 2.905571e+09
1532 3.755172e+09
1533 1.063119e+09
1534 2.248718e+09
1535 1.848139e+09

Accessing the uncertainty is in general done via the method get_uncertainty(). If none are specified, all metrics are returned.

[29]:
output_imp.get_uncertainty().tail()
[29]:
aai_agg rp50 rp100 rp250 tot_value
1531 2.905571e+09 8.324391e+10 1.162643e+11 1.510689e+11 5.760281e+11
1532 3.755172e+09 1.096005e+11 1.460838e+11 1.809413e+11 5.760281e+11
1533 1.063119e+09 2.892734e+10 4.720869e+10 6.807561e+10 5.760281e+11
1534 2.248718e+09 6.468855e+10 8.653474e+10 1.085266e+11 5.760281e+11
1535 1.848139e+09 5.294874e+10 7.395191e+10 9.609003e+10 5.760281e+11

The distributions of the one-dimensioanl metrics (eai_exp and at_event are never shown with this method) can be vizualised with plots.

[30]:
output_imp.plot_uncertainty(figsize=(12,12));
../_images/tutorial_climada_engine_unsequa_66_0.png
[31]:
# Specific plot for the return period distributions
output_imp.plot_rp_uncertainty(figsize=(14.3,8));
No handles with labels found to put in legend.
../_images/tutorial_climada_engine_unsequa_67_1.png

Now that a distribution of the impact metrics has been computed for each sample, we can also compute the sensitivity indices for each metrics to each uncertainty parameter. Note that the chosen method for the sensitivity analysis should correpond to its sampling partner as defined in the SAlib package.

The sensitivity indices dictionnaries outputs from the SAlib methods are stored in the same structure of nested dictionnaries as the metrics distributions. Note that depending on the chosen sensitivity analysis method the returned indices dictionnary will return specific types of sensitivity indices with specific names. Please get familiar with SAlib for more information.

Note that in our case, several of the second order sensitivity indices are negative. For the default method sobol, this indicates that the algorithm has not converged and cannot give realiable values for these sensitivity indices. If this happens, please use a larger number of samples. Here we will focus on the first-order indices.

[32]:
output_imp = calc_imp.sensitivity(output_imp)

Similarly to the uncertainty case, the data is stored in dataframe attributes.

[33]:
output_imp.sensitivity_metrics
[33]:
['aai_agg', 'freq_curve', 'tot_value']
[34]:
output_imp.get_sens_df('aai_agg').tail()
[34]:
si param param2 aai_agg
65 S2_conf k x_exp NaN
66 S2_conf k G NaN
67 S2_conf k v_half NaN
68 S2_conf k vmin NaN
69 S2_conf k k NaN

To obtain the sensitivity interms of a particular sensitivity index, use the method get_sensisitivity(). If none is specified, the value of the index for all metrics is returned.

[35]:
output_imp.get_sensitivity('S1')
[35]:
si param param2 aai_agg rp50 rp100 rp250 tot_value
0 S1 x_exp None 0.001040 0.000993 0.000930 0.001150 1.005253
1 S1 G None 0.073408 0.075781 0.084662 0.093718 0.000000
2 S1 v_half None 0.514220 0.553640 0.596659 0.619366 0.000000
3 S1 vmin None 0.012642 0.014407 0.012068 0.010065 0.000000
4 S1 k None 0.213491 0.189862 0.134867 0.095861 0.000000

Sometimes, it is useful to simply know what is the largest sensitivity index for each metric.

[36]:
output_imp.get_largest_si(salib_si='S1')
[36]:
metric param param2 si
0 aai_agg v_half None 0.514220
1 rp50 v_half None 0.553640
2 rp100 v_half None 0.596659
3 rp250 v_half None 0.619366
4 tot_value x_exp None 1.005253

The value of the sensitivity indices can be plotted for each metric that is one-dimensional (eai_exp and at_event are not shown in this plot).

As expected, the tot_value of the exposure is only dependent on the exposure parameter x_exp. We further see that both the errors in freq_curve and in aai_agg are mostly determined by x_exp and v_half. Finally, we see small differences in the sensitivity of the different return periods.

[37]:
# Default for 'sobol' is to plot 'S1' sensitivity index.
output_imp.plot_sensitivity(figsize=(12,8));
../_images/tutorial_climada_engine_unsequa_78_0.png

Note that since we have quite a few measures, the imp_meas_fut and imp_meas_pres plots are too crowded. We can select only the other metrics easily. In addition, instead of showing first order sensitivity ‘S1’, we can plot the total sensitivity ‘ST’.

[38]:
output_imp.plot_sensitivity(salib_si = 'ST', figsize=(12,8));
../_images/tutorial_climada_engine_unsequa_80_0.png

One can also vizualise the second-order sensitivity indices in the form of a correlation matrix.

[39]:
output_imp.plot_sensitivity_second_order(figsize=(12,8));
../_images/tutorial_climada_engine_unsequa_82_0.png

A few non-default parameters

We shall use the same uncertainty variables as in the previous section but show a few possibilities to use non-default method arguments.

[5]:
# Sampling method "latin" hypercube instead of `saltelli`.
from climada.engine.unsequa import CalcImpact

calc_imp2 = CalcImpact(exp_iv, impf_iv, haz)
output_imp2 = calc_imp2.make_sample(N=1000, sampling_method='latin')
2022-01-10 21:12:35,887 - climada.engine.unsequa.calc_base - INFO - Effective number of made samples: 1000
[6]:
output_imp2.plot_sample(figsize=(15,8));
../_images/tutorial_climada_engine_unsequa_86_0.png
[7]:
# Compute also the distribution of the metric `eai_exp`
# To speed-up the comutations, we use a ProcessPool for parallel computations
from pathos.pools import ProcessPool as Pool
pool = Pool()
output_imp2 = calc_imp2.uncertainty(output_imp2, rp = [50, 100, 250], calc_eai_exp=True, calc_at_event=True, pool=pool)
pool.close() #Do not forget to close your pool!
pool.join()
pool.clear()
2022-01-10 21:12:38,815 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:38,819 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:38,824 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:38,831 - climada.engine.unsequa.calc_base - INFO -

Estimated computaion time: 0:00:03.325000

2022-01-10 21:12:39,097 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,102 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,107 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,120 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,123 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,123 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,126 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,128 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,134 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,138 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,148 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,176 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,154 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,159 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,159 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,162 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,169 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,172 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,168 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,175 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,180 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,188 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,220 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,199 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,200 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,201 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,203 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,203 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,201 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,206 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,207 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,207 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,210 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,219 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,220 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,222 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,222 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,223 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,228 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,230 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,228 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,234 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,238 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,242 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,243 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,242 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,244 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,245 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,245 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,246 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,248 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,249 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,249 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,247 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,252 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,253 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,255 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,258 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,259 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,263 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,267 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,269 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,273 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,273 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,275 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,276 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,276 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,277 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,277 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,276 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,278 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,279 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,280 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,283 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,288 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,289 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,289 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,290 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,292 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,292 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,293 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,294 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,294 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,296 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,296 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,296 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,296 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,297 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,304 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,320 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,318 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,320 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,321 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,323 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,323 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,322 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,325 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,326 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,327 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,329 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,328 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,332 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,332 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,336 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,339 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,340 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,342 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,347 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,348 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,353 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,353 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,361 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,365 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,364 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,319 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,369 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,369 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,372 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,373 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,371 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,377 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,375 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,379 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,379 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,345 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,386 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,388 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,391 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,392 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,394 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,395 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,395 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,365 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,398 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,398 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,398 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,401 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,402 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,370 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,406 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,410 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,411 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,412 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,415 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,415 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,415 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,418 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,418 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,414 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,422 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,422 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,424 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,427 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,427 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,427 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,428 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,430 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,430 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,428 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,435 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,434 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,434 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,411 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,414 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,439 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,447 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,446 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,444 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,449 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,447 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,449 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,448 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,450 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,452 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,449 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,453 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,453 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,454 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,456 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,456 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,456 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,464 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,466 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,462 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,468 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,468 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,458 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,472 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,471 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,473 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,452 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,483 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,483 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,485 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,486 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,486 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,488 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,489 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,490 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,470 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,489 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,489 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,492 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,496 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,500 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,499 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,501 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,502 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,481 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,503 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,504 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,506 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,507 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,508 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,511 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,506 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,512 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,518 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,518 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,518 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,520 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,521 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,522 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,524 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,521 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,526 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,527 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,529 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,510 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,485 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,538 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,538 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,538 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,525 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,541 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,538 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,541 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,542 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,542 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,542 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,544 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,545 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,545 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,549 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,544 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,553 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,555 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,553 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,555 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,556 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,559 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,559 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,560 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,562 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,562 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,562 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,565 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,566 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,569 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,555 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,572 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,574 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,576 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,577 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,579 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,580 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,580 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,581 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,582 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,582 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,585 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,586 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,588 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,588 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,592 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,584 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,593 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,596 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,596 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,596 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,598 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,600 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,600 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,601 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,602 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,604 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,607 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,607 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,578 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,611 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,613 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,614 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,608 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,615 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,615 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,616 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,614 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,618 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,618 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,618 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,618 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,620 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,620 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,621 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,621 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,622 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,619 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,624 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,625 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,623 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,625 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,629 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,631 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,633 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,633 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,634 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,635 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,635 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,636 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,637 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,637 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,638 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,638 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,640 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,630 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,642 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,641 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,642 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,643 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,646 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,647 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,649 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,649 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,644 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,649 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,652 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,652 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,652 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,652 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,653 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,655 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,655 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,656 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,655 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,658 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,658 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,660 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,661 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,663 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,664 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,664 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,666 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,669 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,669 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,673 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,674 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,671 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,676 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,676 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,679 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,680 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,680 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,680 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,680 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,682 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,683 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,686 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,687 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,691 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,691 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,694 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,695 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,690 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,695 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,698 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,698 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,698 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,698 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,701 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,702 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,705 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,705 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,713 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,717 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,717 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,718 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,662 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,720 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,663 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,720 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,721 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,722 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,723 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,723 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,725 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,725 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,710 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,727 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,730 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,736 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,737 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,738 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,739 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,739 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,740 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,731 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,743 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,739 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,734 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,744 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,743 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,745 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,745 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,748 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,750 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,752 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,755 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,756 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,756 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,759 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,760 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,762 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,764 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,768 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,762 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,756 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,772 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,770 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,766 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,776 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,776 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,776 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,779 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,780 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,784 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,787 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,760 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,791 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,792 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,775 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,793 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,794 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,795 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,795 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,795 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,798 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,798 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,798 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,799 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,799 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,802 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,802 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,807 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,808 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,810 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,812 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,814 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,814 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,812 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,815 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,816 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,817 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,818 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,818 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,821 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,821 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,823 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,826 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,803 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,833 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,833 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,834 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,826 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,836 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,837 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,837 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,835 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,838 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,841 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,841 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,841 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,840 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,843 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,847 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,846 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,844 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,842 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,851 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,852 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,852 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,855 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,855 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,856 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,859 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,859 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,859 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,861 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,865 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,861 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,865 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,869 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,865 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,870 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,870 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,871 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,871 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,873 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,874 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,873 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,874 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,877 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,878 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,878 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,884 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,888 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,889 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,889 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,890 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,891 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,892 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,894 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,895 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,894 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,896 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,886 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,894 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,899 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,902 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,906 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,907 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,908 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,909 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,860 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,910 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,904 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,913 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,912 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,913 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,911 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,914 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,917 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,917 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,918 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,924 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,926 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,929 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,930 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,930 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,928 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,932 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,934 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,934 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,936 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,937 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,938 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,937 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,945 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,932 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,949 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,949 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,948 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,950 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,952 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,953 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,953 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,955 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,910 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,956 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,957 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,954 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,956 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,959 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,960 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,965 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,969 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,969 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,971 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,972 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,975 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,972 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,976 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,977 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,979 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,980 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,982 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,983 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,984 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,987 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,987 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,987 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:39,989 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,990 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,990 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,994 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:39,995 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,005 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,003 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,006 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,008 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,007 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,005 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,008 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,012 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,012 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,012 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:39,998 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,014 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,013 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,017 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,019 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,023 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,024 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,026 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,026 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,030 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,002 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,030 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,031 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,034 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,010 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,035 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,038 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,039 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,038 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,040 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,041 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,043 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,043 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,043 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,044 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,045 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,048 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,048 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,055 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,055 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,055 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,054 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,058 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,058 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,059 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,060 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,062 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,063 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,064 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,063 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,067 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,073 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,073 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,076 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,075 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,077 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,077 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,077 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,080 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,079 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,079 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,081 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,085 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,084 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,090 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,090 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,093 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,093 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,093 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,095 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,096 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,096 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,097 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,097 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,100 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,100 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,109 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,111 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,108 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,112 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,111 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,116 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,116 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,118 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,116 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,121 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,090 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,123 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,123 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,124 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,127 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,127 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,128 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,130 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,131 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,133 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,135 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,137 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,138 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,141 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,142 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,140 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,142 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,144 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,145 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,147 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,148 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,114 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,148 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,148 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,152 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,153 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,155 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,158 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,159 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,141 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,163 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,164 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,165 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,166 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,169 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,166 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,170 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,172 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,173 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,174 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,176 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,177 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,177 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,173 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,179 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,180 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,183 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,181 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,185 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,186 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,186 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,189 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,189 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,191 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,192 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,192 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,193 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,195 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,196 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,199 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,204 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,205 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,206 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,208 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,208 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,194 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,210 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,210 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,211 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,212 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,214 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,214 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,195 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,217 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,222 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,224 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,227 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,227 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,228 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,229 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,231 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,231 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,231 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,232 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,235 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,234 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,235 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,242 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,245 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,245 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,248 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,250 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,250 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,252 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,253 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,261 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,239 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,262 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,263 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,264 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,265 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,266 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,267 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,268 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,269 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,272 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,277 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,276 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,280 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,279 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,281 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,283 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,283 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,286 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,292 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,290 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,294 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,295 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,297 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,297 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,300 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,300 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,304 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,304 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,302 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,307 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,307 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,305 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,308 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,310 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,311 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,311 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,314 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,312 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,314 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,315 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,317 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,321 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,318 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,324 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,325 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,327 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,327 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,328 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,328 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,331 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,331 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,331 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,334 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,337 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,336 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,340 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,340 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,341 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,342 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,343 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,343 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,344 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,345 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,346 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,348 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,349 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,352 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,353 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,353 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,345 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,355 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,356 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,358 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,358 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,359 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,361 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,361 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,362 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,362 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,362 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,364 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,365 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,368 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,370 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,370 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,373 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,373 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,375 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,376 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,379 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,384 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,387 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,387 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,389 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,390 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,391 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,391 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,392 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,395 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,395 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,397 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,400 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,403 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,404 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,405 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,407 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,407 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,359 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,407 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,410 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,410 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,406 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,411 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,413 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,413 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,417 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,417 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,421 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,421 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,425 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,425 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,427 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,427 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,428 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,429 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,430 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,430 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,431 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,433 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,433 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,434 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,441 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,440 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,443 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,444 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,444 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,446 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,447 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,448 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,448 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,449 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,450 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,452 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,451 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,460 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,461 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,461 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,463 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,464 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,463 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,464 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,466 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,467 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,467 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,468 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,470 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,472 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,477 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,477 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,478 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,477 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,481 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,481 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,481 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,482 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,484 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,484 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,484 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,486 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,485 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,488 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,494 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,477 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,496 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,497 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,497 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,499 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,500 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,501 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,500 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,502 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,503 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,504 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,505 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,505 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,509 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,495 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,509 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,512 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,515 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,515 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,516 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,516 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,518 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,519 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,516 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,519 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,519 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,523 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,523 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,515 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,523 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,510 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,530 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,530 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,533 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,533 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,533 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,534 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,528 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,538 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,541 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,536 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,541 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,542 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,545 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,546 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,549 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,549 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,549 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,552 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,553 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,553 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,537 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,536 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,556 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,555 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,556 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,560 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,563 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,564 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,567 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,567 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,568 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,571 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,571 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,572 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,572 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,576 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,576 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,580 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,583 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,586 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,587 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,587 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,577 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,589 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,591 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,591 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,577 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,586 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,592 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,595 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,596 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,597 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,600 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,602 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,604 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,593 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,608 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,610 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,610 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,612 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,613 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,609 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,614 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,615 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,618 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,619 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,619 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,621 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,624 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,628 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,611 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,631 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,631 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,633 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,635 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,635 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,638 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,640 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,638 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,616 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,643 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,640 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,648 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,651 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,651 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,643 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,654 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,654 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,656 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,653 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,646 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,659 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,659 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,657 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,659 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,663 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,663 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,668 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,667 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,670 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,671 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,674 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,675 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,677 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,678 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,679 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,681 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,681 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,685 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,689 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,689 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,689 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,692 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,693 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,696 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,696 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,700 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,701 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,704 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,708 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,712 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,709 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,719 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,718 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,720 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,720 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,722 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,722 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,724 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,724 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,728 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,728 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,733 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,737 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,737 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,738 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,739 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,739 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,728 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,741 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,741 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,743 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,743 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,742 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,745 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,746 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,746 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,753 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,750 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,756 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,757 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,758 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,761 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,761 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,762 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,765 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,766 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,767 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,775 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,764 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,778 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,777 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,782 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,783 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,732 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,783 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,773 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,789 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,789 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,786 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,792 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,785 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,795 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,795 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,801 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,804 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,806 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,778 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,806 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,806 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,808 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,808 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,809 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,811 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,812 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,812 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,812 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,812 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,815 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,817 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,817 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,815 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,825 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,825 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,827 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,828 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,831 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,829 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,829 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,832 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,828 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,833 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,834 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,835 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,836 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,836 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,838 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,843 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,845 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,837 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,846 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,846 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,849 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,849 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,849 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,850 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,853 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,853 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,854 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,854 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,858 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,859 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,851 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,850 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,866 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,866 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,869 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,870 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,870 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,873 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,873 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,873 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,874 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,877 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,878 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,875 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,883 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,886 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,887 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,889 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,890 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,890 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,883 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,894 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,894 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,894 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,894 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,898 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,862 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,903 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,898 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,906 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,898 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,907 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,910 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,910 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,911 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,913 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,913 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,910 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,914 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,914 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,916 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,918 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,919 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,923 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,924 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,926 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,929 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,930 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,930 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,933 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,934 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,936 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,938 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,927 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,940 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,942 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,941 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,940 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,931 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,947 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,952 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,952 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,950 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,954 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,961 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,959 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,949 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,965 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,969 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,971 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,974 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,978 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,971 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,982 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,982 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,989 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:40,953 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,968 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,964 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,983 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,989 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,995 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,997 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,998 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,999 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:40,997 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:40,998 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,002 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,005 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,008 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,008 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,008 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,005 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,009 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,017 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,015 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,017 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,016 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,017 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,028 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,030 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,027 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,033 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,033 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,039 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,039 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,041 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,042 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,043 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,043 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,044 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,044 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,046 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,043 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,046 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,047 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,051 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,049 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,051 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,055 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,056 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,056 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,059 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,059 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,059 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,059 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,058 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,063 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,064 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,066 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,067 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,064 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,066 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,069 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,068 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,073 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,074 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,075 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,075 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,078 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,079 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,077 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,082 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,083 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,083 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,083 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,083 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,085 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,086 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,087 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,083 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,091 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,091 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,092 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,096 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,095 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,096 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,099 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,099 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,096 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,102 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,103 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,104 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,106 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,106 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,103 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,107 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,109 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,110 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,111 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,112 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,101 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,114 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,115 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,118 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,118 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,118 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,122 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,123 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,127 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,126 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,131 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,131 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,117 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,132 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,135 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,135 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,137 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,138 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,136 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,140 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,143 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,143 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,143 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,141 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,144 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,148 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,152 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,144 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,154 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,144 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,153 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,156 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,158 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,160 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,160 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,162 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,162 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,164 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,167 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,167 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,169 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,172 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,176 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,164 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,180 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,182 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,183 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,187 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,186 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,189 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,191 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,192 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,194 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,197 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,196 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,185 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,203 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,208 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,209 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,212 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,213 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,209 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,216 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,217 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,218 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,222 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,217 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,221 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,221 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,227 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,229 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,231 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,232 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,235 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,236 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,237 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,239 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,239 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,246 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,248 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,206 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,244 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,252 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,247 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,253 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,253 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,257 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,257 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,257 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,262 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,262 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,269 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,273 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,277 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,259 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,278 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,281 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,275 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,285 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,265 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,278 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,289 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,290 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,290 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,290 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,294 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,295 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,301 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,301 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,303 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,304 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,303 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,305 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,306 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,306 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,309 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,309 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,309 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,309 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,311 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,311 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,313 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,317 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,315 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,320 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,320 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,321 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,323 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,323 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,324 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,324 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,327 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,327 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,328 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,328 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,329 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,332 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,333 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,338 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,337 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,339 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,339 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,342 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,343 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,342 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,345 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,343 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,346 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,347 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,347 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,348 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,350 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,353 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,353 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,356 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,358 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,359 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,360 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,362 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,363 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,364 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,366 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,367 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,367 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,371 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,372 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,372 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,374 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,377 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,377 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,379 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,381 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,382 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,382 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,384 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,383 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,386 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,386 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,390 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,390 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,393 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,396 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,395 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,396 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,399 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,400 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,403 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,403 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,404 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,407 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,407 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,410 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,411 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,415 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,413 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,417 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,418 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,423 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,426 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,427 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,431 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,430 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,435 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,435 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,440 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,439 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,437 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,443 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,444 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,444 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,445 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,447 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,447 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,451 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,451 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,463 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,463 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,466 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,467 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,470 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,470 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,471 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,476 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,479 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,481 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,484 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,484 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,487 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,459 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,487 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,487 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,487 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,448 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,493 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,493 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,498 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,503 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,504 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,477 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,503 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,505 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,507 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,510 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,510 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,510 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,511 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,514 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,515 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,515 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,525 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,527 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,529 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,530 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,528 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,529 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,530 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,514 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,531 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,535 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,536 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,536 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,536 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,539 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,539 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,541 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,545 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,556 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,560 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,567 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,569 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,569 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,580 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,580 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,580 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,585 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,585 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,588 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,586 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,588 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,596 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,597 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,595 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,602 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,606 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,607 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,614 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,615 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,616 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,617 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,618 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,620 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,619 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,620 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,622 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,625 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,626 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,623 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,628 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,630 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,631 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,632 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,634 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,635 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,634 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,635 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,637 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,638 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,639 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,639 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,641 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,641 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,642 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,645 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,646 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,646 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,648 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,651 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,651 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,654 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,653 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,654 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,654 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,658 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,659 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,659 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,658 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,663 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,666 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,666 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,669 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,670 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,670 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,667 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,671 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,674 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,676 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,676 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,680 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,673 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,683 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,686 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,687 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,690 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,690 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,687 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,693 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,692 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,691 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,696 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,696 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,697 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,697 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,696 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,704 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,712 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,716 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,718 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,721 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,723 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,726 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,702 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,722 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,714 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,726 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,714 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,729 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,729 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,732 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,733 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,733 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,735 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,737 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,748 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,752 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,748 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,753 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,749 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,749 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,756 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,757 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,761 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,761 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,762 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,763 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,766 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,748 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,779 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,776 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,744 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,766 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,774 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,784 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,785 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,785 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,788 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,789 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,789 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,790 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,787 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,791 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,792 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,794 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,796 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,798 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,797 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,794 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,801 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,806 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,808 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,807 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,809 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,813 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,813 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,813 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,814 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,818 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,818 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,820 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,815 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,820 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,825 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,818 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,823 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,829 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,832 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,836 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,835 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,824 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,833 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,841 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,842 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,844 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,846 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,835 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,846 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,841 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,848 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,858 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,859 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,851 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,860 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,854 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,844 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,862 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,865 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,865 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,864 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,870 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,870 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,869 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,876 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,873 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,873 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,873 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,882 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,883 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,888 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,887 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,890 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,894 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,893 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,895 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,899 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,896 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,906 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,908 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,909 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,891 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,903 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,912 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,912 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,904 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,903 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,915 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,918 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,919 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,918 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,919 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,918 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,919 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,920 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,925 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,925 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,925 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,925 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,931 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,930 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,937 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,938 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,940 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,940 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,943 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,943 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,945 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,943 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,949 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,948 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,949 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,944 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,945 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,949 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,958 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,961 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,963 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,963 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,965 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,963 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,967 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,963 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,967 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,969 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,969 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,969 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,969 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,974 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,975 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,975 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,971 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,976 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,985 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,987 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,981 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,987 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,988 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,988 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,987 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,987 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:41,993 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,993 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,993 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,994 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:41,998 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,998 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,998 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:41,998 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,007 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,011 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,011 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,001 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,012 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,012 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,016 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,016 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,013 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,017 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,017 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,017 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,002 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,023 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,023 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,023 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,024 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,025 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,027 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,036 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,036 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,039 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,044 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,046 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,047 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,044 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,038 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,047 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,051 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,053 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,055 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,054 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,058 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,056 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,059 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,060 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,062 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,060 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,060 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,065 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,069 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,074 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,075 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,065 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,077 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,075 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,080 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,085 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,086 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,088 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,080 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,089 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,083 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,090 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,092 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,096 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,097 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,097 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,103 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,101 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,106 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,107 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,110 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,108 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,111 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,116 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,116 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,116 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,117 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,117 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,120 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,120 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,122 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,122 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,125 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,125 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,123 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,126 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,127 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,128 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,140 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,140 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,142 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,143 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,145 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,146 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,147 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,147 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,151 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,151 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,153 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,155 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,156 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,147 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,153 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,166 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,163 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,167 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,168 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,169 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,171 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,172 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,172 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,173 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,175 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,174 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,176 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,174 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,177 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,182 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,182 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,184 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,186 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,177 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,192 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,187 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,193 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,194 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,197 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,194 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,197 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,199 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,201 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,203 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,206 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,205 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,208 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,207 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,204 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,224 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,229 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,236 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,237 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,243 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,236 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,249 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,251 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,254 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,260 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,266 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,268 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,274 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,275 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,276 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,280 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,281 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,285 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,285 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,283 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,288 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,278 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,291 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,292 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,287 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,293 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,294 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,296 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,298 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,298 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,300 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,301 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,304 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,306 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,307 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,307 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,310 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,311 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,307 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,316 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,316 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,316 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,320 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,322 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,324 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,319 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,299 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,325 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,325 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,326 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,332 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,332 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,334 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,336 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,341 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,343 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,330 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,342 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,344 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,345 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,347 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,343 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,348 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,349 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,349 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,353 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,353 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,356 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,358 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,358 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,357 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,368 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,369 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,370 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,370 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,375 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,375 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,374 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,374 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,365 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,376 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,363 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,382 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,382 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,382 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,382 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,390 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,395 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,395 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,395 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,396 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,397 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,397 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,394 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,399 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,402 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,402 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,402 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,402 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,407 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,407 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,408 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,404 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,410 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,410 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,409 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,413 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,416 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,423 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,425 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,426 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,428 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,429 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,431 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,431 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,435 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,433 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,437 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,438 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,438 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,433 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,441 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,441 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,445 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,446 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,451 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,452 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,454 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,455 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,456 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,457 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,458 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,461 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,461 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,463 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,463 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,466 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,469 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,469 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,460 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,470 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,466 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,471 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,480 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,484 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,485 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,485 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,483 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,489 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,491 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,492 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,492 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,495 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,499 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,500 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,503 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,506 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,492 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,495 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,511 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,498 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,514 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,516 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,518 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,520 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,522 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,523 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,522 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,525 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,527 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,528 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,531 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,533 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,542 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,537 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,538 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,545 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,529 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,546 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,547 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,547 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,550 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,550 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,554 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,549 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,560 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,549 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,556 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,566 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,569 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,571 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,571 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,573 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,576 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,576 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,575 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,574 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,565 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,577 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,581 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,580 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,581 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,584 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,588 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,588 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,597 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,596 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,601 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,598 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,599 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,603 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,603 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,607 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,607 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,612 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,612 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,613 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,607 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,626 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,628 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,627 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,614 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,629 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,635 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,634 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,639 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,634 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,643 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,632 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,648 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,647 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,645 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,649 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,626 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,655 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,662 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,652 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,664 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,664 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,666 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,666 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,665 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,668 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,669 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,672 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,675 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,676 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,668 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,678 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,680 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,680 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,680 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,686 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,687 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,689 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,690 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,692 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,692 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,693 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,696 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,697 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,697 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,697 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,702 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,703 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,702 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,702 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,710 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,710 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,715 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,716 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,717 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,719 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,719 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,722 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,723 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,713 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,723 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,726 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,726 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,729 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,729 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,731 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,733 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,734 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,737 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,740 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,739 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,737 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,746 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,746 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,747 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,751 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,751 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,754 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,747 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,755 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,757 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,757 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,759 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,763 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,763 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,767 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,769 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,769 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,773 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,773 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,774 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,778 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,778 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,778 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,779 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,783 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,784 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,785 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,781 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,766 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,789 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,793 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,793 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,794 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,794 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,799 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,800 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,795 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,809 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,810 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,814 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,813 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,813 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,815 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,818 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,818 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,819 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,823 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,824 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,825 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,831 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,833 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,837 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,837 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,838 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,838 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,843 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,843 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,843 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,841 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,844 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,840 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,852 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,851 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,858 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,858 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,863 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,864 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,863 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,865 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,869 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,869 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,869 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,871 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,876 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,876 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,878 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,885 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,890 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,890 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,879 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,891 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,894 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,895 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,898 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,900 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,901 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,904 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,893 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,909 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,909 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,898 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,915 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,916 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,916 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,915 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,917 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,917 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,918 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,919 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,923 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,923 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,923 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,924 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,925 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,925 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,926 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,927 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,931 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,931 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,932 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,933 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,941 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,944 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,944 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,945 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,946 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,948 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,950 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,941 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,950 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,950 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,947 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,951 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,953 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,958 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,958 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,960 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,959 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,959 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,968 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,971 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,970 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,971 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,974 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,975 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,971 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,969 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,977 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,978 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,981 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,984 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,985 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,986 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,984 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,987 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,976 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,991 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,998 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,998 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:42,997 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,998 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:42,998 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,998 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:42,999 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,006 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,008 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,013 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,014 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,018 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,019 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,010 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,018 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,015 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,014 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,020 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,023 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,022 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,031 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,031 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,033 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,033 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,035 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,040 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,041 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,041 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,045 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,043 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,043 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,046 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,049 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,054 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,053 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,051 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,056 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,058 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,059 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,059 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,059 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,060 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,060 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,062 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,066 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,066 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,066 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,068 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,072 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,073 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,075 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,075 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,074 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,075 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,075 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,081 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,081 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,086 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,086 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,088 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,088 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,091 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,090 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,089 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,095 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,096 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,087 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,096 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,096 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,100 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,099 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,104 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,104 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,104 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,105 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,105 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,110 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,110 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,119 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,114 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,121 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,123 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,123 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,123 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,124 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,117 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,126 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,126 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,130 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,130 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,127 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,131 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,131 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,131 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,137 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,136 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,137 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,134 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,138 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,138 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,144 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,145 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,145 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,149 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,150 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,150 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,148 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,154 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,153 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,155 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,154 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,157 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,157 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,161 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,161 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,161 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,164 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,166 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,169 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,169 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,171 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,173 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,174 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,175 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,173 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,179 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,180 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,182 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,179 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,187 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,191 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,191 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,192 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,193 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,195 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,195 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,198 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,199 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,203 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,199 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,204 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,209 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,180 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,213 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,217 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,219 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,222 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,224 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,228 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,216 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,232 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,237 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,237 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,236 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,238 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,241 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,242 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,241 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,245 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,247 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,250 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,249 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,252 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,251 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,256 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,263 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,261 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,265 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,257 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,266 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,266 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,270 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,272 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,274 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,275 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,269 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,279 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,280 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,284 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,280 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,282 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,289 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,288 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,290 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,292 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,293 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,289 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,298 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,298 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,300 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,303 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,305 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,305 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,309 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,310 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,311 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,311 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,312 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,312 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,316 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,311 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,320 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,320 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,320 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,325 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,326 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,326 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,331 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,334 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,326 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,334 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,341 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,341 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,342 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,341 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,345 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,346 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,347 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,344 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,349 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,349 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,350 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,357 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,357 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,357 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,361 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,362 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,359 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,361 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,365 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,370 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,370 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,375 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,375 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,380 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,380 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,385 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,385 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,380 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,391 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,392 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,392 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,389 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,393 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,394 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,397 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,397 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,402 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,402 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,402 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,403 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,407 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,411 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,411 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,414 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,417 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,421 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,421 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,423 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,427 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,427 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,431 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,433 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,432 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,435 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,435 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,437 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,441 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,442 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,442 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,439 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,446 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,443 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,450 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,452 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,456 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,457 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,461 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,461 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,461 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,458 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,466 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,466 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,469 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,469 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,469 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,466 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,471 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,477 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,477 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,477 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,483 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,487 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,485 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,491 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,493 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,492 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,479 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,490 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,494 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,495 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,497 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,501 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,502 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,502 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,508 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,508 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,506 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,509 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,510 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,513 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,518 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,521 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,526 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,526 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,527 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,527 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,528 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,533 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,533 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,534 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,540 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,542 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,543 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,545 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,549 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,542 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,549 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,546 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,557 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,558 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,557 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,558 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,557 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,561 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,566 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,563 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,567 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,567 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,571 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,570 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,575 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,576 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,579 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,577 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,576 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,581 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,587 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,587 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,590 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,590 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,593 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,601 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,602 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,603 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,596 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,608 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,608 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,608 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,601 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,610 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,611 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,613 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,618 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,618 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,619 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,620 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,626 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,624 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,627 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,624 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,634 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,636 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,639 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,636 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,638 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,641 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,642 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,634 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,645 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,650 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,651 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,653 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,656 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,657 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,657 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,656 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,663 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,665 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,664 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,664 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,664 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,664 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,668 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,673 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,673 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,674 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,676 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,680 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,680 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,681 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,680 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,683 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,687 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,688 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,689 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,688 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,690 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,693 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,697 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,697 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,699 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,702 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,704 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,708 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,707 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,709 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,706 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,714 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,716 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,718 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,720 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,723 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,722 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,728 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,719 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,729 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,731 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,738 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,729 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,741 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,744 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,744 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,743 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,747 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,746 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,752 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,752 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,756 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,758 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,760 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,760 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,770 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,762 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,771 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,774 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,774 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,780 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,784 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,784 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,785 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,786 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,792 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,791 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,791 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,794 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,798 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,798 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,802 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,806 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,807 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,808 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,808 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,812 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,814 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,814 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,817 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,819 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,821 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,821 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,820 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,826 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,827 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,831 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,832 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,837 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,837 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,840 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,841 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,844 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,844 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,846 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,846 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,847 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,852 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,852 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,854 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,857 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,859 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,863 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,861 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,869 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,871 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,870 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,874 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,874 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,877 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,878 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,878 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,883 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,885 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,887 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,890 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,893 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,895 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,897 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,901 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,901 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,905 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,909 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,910 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,913 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,918 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,922 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,925 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,929 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,930 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,934 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,938 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,950 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,953 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,957 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,967 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,970 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,974 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:12:43,985 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:43,988 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:43,991 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
[8]:
# Add the original value of the impacts (without uncertainty) to the uncertainty plot
from climada.engine import Impact
imp = Impact()
imp.calc(exp_base, impf_func(), haz)
aai_agg_o = imp.aai_agg
freq_curve_o = imp.calc_freq_curve([50, 100, 250]).impact
orig_list = [aai_agg_o] + list(freq_curve_o) +[1]
2022-01-10 21:12:47,695 - climada.entity.impact_funcs.base - WARNING - For intensity = 0, mdd != 0 or paa != 0. Consider shifting the origin of the intensity scale. In impact.calc the impact is always null at intensity = 0.
2022-01-10 21:12:47,697 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:12:47,699 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
[9]:
# plot the aai_agg and freq_curve uncertainty only
# use logarithmic x-scale
output_imp2.plot_uncertainty(metric_list=['aai_agg', 'freq_curve'], orig_list=orig_list, log=True, figsize=(12,8));
../_images/tutorial_climada_engine_unsequa_89_0.png
[10]:
# Use the method 'rbd_fast' which is recommend in pair with 'latin'. In addition, change one of the kwargs
# (M=15) of the salib sampling method.
output_imp2 = calc_imp2.sensitivity(output_imp2, sensitivity_method='rbd_fast', sensitivity_kwargs = {'M': 15})
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/SALib/analyze/rbd_fast.py:106: RuntimeWarning: invalid value encountered in double_scalars
  return D1 / V

Since we computed the distribution and sensitivity indices for the total impact at each exposure point, we can plot a map of the largest sensitivity index in each exposure location. For every location, the most sensitive parameter is v_half, meaning that the average annual impact at each location is most sensitivity to the ucnertainty in the impact function slope scaling parameter.

[11]:
output_imp2.plot_sensitivity_map();
../_images/tutorial_climada_engine_unsequa_92_0.png
[12]:
output_imp2.get_largest_si(salib_si='S1', metric_list=['eai_exp']).tail()
[12]:
metric param param2 si
45 45 v_half None 0.479974
46 46 v_half None 0.479974
47 47 v_half None 0.479974
48 48 v_half None 0.475221
49 49 v_half None 0.479974

CalcCostBenefit

The uncertainty and sensitivity analysis for CostBenefit is completely analogous to the Impact case. It is slightly more complex as there are more input variables.

Set the InputVars

[13]:
import copy
from climada.util.constants import ENT_DEMO_TODAY, ENT_DEMO_FUTURE, HAZ_DEMO_H5
from climada.entity import Entity
from climada.hazard import Hazard

# Entity today has an uncertainty in the total asset value
def ent_today_func(x_ent):
    #In-function imports needed only for parallel computing on Windows
    from climada.entity import Entity
    from climada.util.constants import ENT_DEMO_TODAY
    entity = Entity.from_excel(ENT_DEMO_TODAY)
    entity.exposures.ref_year = 2018
    entity.exposures.gdf.value *= x_ent
    return entity

# Entity in the future has a +- 10% uncertainty in the cost of all the adapatation measures
def ent_fut_func(m_fut_cost):
    #In-function imports needed only for parallel computing on Windows
    from climada.entity import Entity
    from climada.util.constants import ENT_DEMO_FUTURE
    entity = Entity.from_excel(ENT_DEMO_FUTURE)
    entity.exposures.ref_year = 2040
    for meas in entity.measures.get_measure('TC'):
        meas.cost *= m_fut_cost
    return entity

haz_base = Hazard.from_hdf5(HAZ_DEMO_H5)
# The hazard intensity in the future is also uncertainty by a multiplicative factor
def haz_fut(x_haz_fut, haz_base):
    #In-function imports needed only for parallel computing on Windows
    import copy
    from climada.hazard import Hazard
    from climada.util.constants import HAZ_DEMO_H5
    haz = copy.deepcopy(haz_base)
    haz.intensity = haz.intensity.multiply(x_haz_fut)
    return haz
from functools import partial
haz_fut_func = partial(haz_fut, haz_base=haz_base)

2022-01-10 21:12:58,058 - climada.hazard.base - INFO - Reading /Users/ckropf/climada/demo/data/tc_fl_1990_2004.h5

Check that costs for measures are changed as desired.

[14]:
costs_1 = [meas.cost for meas in ent_fut_func(1).measures.get_measure('TC')]
costs_05 = [meas.cost for meas in ent_fut_func(0.5).measures.get_measure('TC')]
print(f"\nThe cost for m_fut_cost=1 are {costs_1}\n"
     f"The cost for m_fut_cost=0.5 are {costs_05}");

The cost for m_fut_cost=1 are [1311768360.8515418, 1728000000.0, 8878779433.630093, 9200000000.0]
The cost for m_fut_cost=0.5 are [655884180.4257709, 864000000.0, 4439389716.815046, 4600000000.0]
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Define the InputVars

[15]:
import scipy as sp
from climada.engine.unsequa import InputVar

haz_today = haz_base

haz_fut_distr = {"x_haz_fut": sp.stats.uniform(1, 3),
              }
haz_fut_iv = InputVar(haz_fut_func, haz_fut_distr)

ent_today_distr = {"x_ent":  sp.stats.uniform(0.7, 1)}
ent_today_iv = InputVar(ent_today_func, ent_today_distr)

ent_fut_distr = {"m_fut_cost":  sp.stats.norm(1, 0.1)}
ent_fut_iv = InputVar(ent_fut_func, ent_fut_distr)
[16]:
ent_avg = ent_today_iv.evaluate()
ent_avg.exposures.gdf.head()
[16]:
latitude longitude value deductible cover impf_TC Value_2010
0 26.933899 -80.128799 1.671301e+10 0 1.392750e+10 1 5.139301e+09
1 26.957203 -80.098284 1.511528e+10 0 1.259606e+10 1 4.647994e+09
2 26.783846 -80.748947 1.511528e+10 0 1.259606e+10 1 4.647994e+09
3 26.645524 -80.550704 1.511528e+10 0 1.259606e+10 1 4.647994e+09
4 26.897796 -80.596929 1.511528e+10 0 1.259606e+10 1 4.647994e+09

Compute cost benefit uncertainty and sensitivity using default methods

For examples of how to use non-defaults please see the impact example

[17]:
from climada.engine.unsequa import CalcCostBenefit

unc_cb = CalcCostBenefit(haz_input_var=haz_today, ent_input_var=ent_today_iv,
                     haz_fut_input_var=haz_fut_iv, ent_fut_input_var=ent_fut_iv)
[18]:
output_cb= unc_cb.make_sample(N=10, sampling_kwargs={'calc_second_order':False})
output_cb.get_samples_df().tail()
2022-01-10 21:13:07,531 - climada.engine.unsequa.calc_base - INFO - Effective number of made samples: 50
[18]:
x_ent x_haz_fut m_fut_cost
45 1.263477 3.071289 1.012517
46 1.658008 3.071289 1.012517
47 1.263477 1.372070 1.012517
48 1.263477 3.071289 1.067757
49 1.658008 1.372070 1.067757

For longer computations, it is possible to use a pool for parallel computation.

[19]:
from pathos.pools import ProcessPool as Pool

#without pool
output_cb = unc_cb.uncertainty(output_cb)

#with pool
#pool = Pool()
#output_cb = unc_cb.uncertainty(output_cb, pool=pool)
#pool.close() #Do not forget to close your pool!
#pool.join()
#pool.clear()
#If you have issues with the pool in jupyter, please restart the kernel or use without pool.
2022-01-10 21:13:10,485 - climada.engine.unsequa.calc_cost_benefit - INFO - The freq_curve is not saved. Please change the risk_func (see climada.engine.cost_benefit) if return period information is needed
2022-01-10 21:13:10,670 - climada.entity.exposures.base - INFO - Matching 50 exposures with 2500 centroids.
2022-01-10 21:13:10,672 - climada.util.coordinates - INFO - No exact centroid match found. Reprojecting coordinates to nearest neighbor closer than the threshold = 100
2022-01-10 21:13:10,676 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:13:10,682 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:13:10,683 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:13:10,687 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:13:10,689 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:13:10,694 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:13:10,695 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:13:10,701 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:13:10,702 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:13:10,710 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:13:10,712 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:13:10,718 - climada.entity.exposures.base - INFO - Matching 50 exposures with 2500 centroids.
2022-01-10 21:13:10,719 - climada.util.coordinates - INFO - No exact centroid match found. Reprojecting coordinates to nearest neighbor closer than the threshold = 100
2022-01-10 21:13:10,726 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:13:10,726 - climada.entity.exposures.base - INFO - Impact function column name 'if_TC' is not according to current naming conventions. It's suggested to use 'impf_TC' instead.
2022-01-10 21:13:10,734 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:13:10,736 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:13:10,736 - climada.entity.exposures.base - INFO - Impact function column name 'if_TC' is not according to current naming conventions. It's suggested to use 'impf_TC' instead.
2022-01-10 21:13:10,743 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:13:10,744 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:13:10,744 - climada.entity.exposures.base - INFO - Impact function column name 'if_TC' is not according to current naming conventions. It's suggested to use 'impf_TC' instead.
2022-01-10 21:13:10,750 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:13:10,751 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:13:10,752 - climada.entity.exposures.base - INFO - Impact function column name 'if_TC' is not according to current naming conventions. It's suggested to use 'impf_TC' instead.
2022-01-10 21:13:10,759 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:13:10,761 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:13:10,761 - climada.entity.exposures.base - INFO - Impact function column name 'if_TC' is not according to current naming conventions. It's suggested to use 'impf_TC' instead.
2022-01-10 21:13:10,767 - climada.engine.impact - INFO - Exposures matching centroids found in centr_TC
2022-01-10 21:13:10,768 - climada.engine.impact - INFO - Calculating damage for 50 assets (>0) and 216 events.
2022-01-10 21:13:10,768 - climada.entity.exposures.base - INFO - Impact function column name 'if_TC' is not according to current naming conventions. It's suggested to use 'impf_TC' instead.
2022-01-10 21:13:10,773 - climada.engine.cost_benefit - INFO - Computing cost benefit from years 2018 to 2040.

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.31787          2.75916        2.09365
Beach nourishment          1.73604          2.23365        1.28663
Seawall                    8.92009          0.00282054     0.000316201
Building code              9.2428           1.69662        0.183561

--------------------  --------  --------
Total climate risk:   6.78647   (USD bn)
Average annual risk:  0.707117  (USD bn)
Residual risk:        0.09423   (USD bn)
--------------------  --------  --------
Net Present Values
2022-01-10 21:13:10,778 - climada.engine.unsequa.calc_base - INFO -

Estimated computaion time: 0:00:14.600000

/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.31787          2.75916        2.09365
Beach nourishment          1.73604          2.23365        1.28663
Seawall                    8.92009          0.00282054     0.000316201
Building code              9.2428           1.69662        0.183561

--------------------  --------  --------
Total climate risk:   6.78647   (USD bn)
Average annual risk:  0.707117  (USD bn)
Residual risk:        0.09423   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.31787          2.93592        2.22778
Beach nourishment          1.73604          2.37799        1.36978
Seawall                    8.92009          0.00282054     0.000316201
Building code              9.2428           1.78488        0.193111

--------------------  --------  --------
Total climate risk:   7.13953   (USD bn)
Average annual risk:  0.707117  (USD bn)
Residual risk:        0.037919  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.31787          14.2247        10.7937
Beach nourishment          1.73604          11.095          6.39101
Seawall                    8.92009           0.0372843      0.00417982
Building code              9.2428           13.3332         1.44255

--------------------  --------  --------
Total climate risk:   53.3327   (USD bn)
Average annual risk:   6.12413  (USD bn)
Residual risk:        14.6425   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.48543          2.75916        1.85748
Beach nourishment          1.95676          2.23365        1.1415
Seawall                   10.0542           0.00282054     0.000280534
Building code             10.418            1.69662        0.162855

--------------------  --------  --------
Total climate risk:   6.78647   (USD bn)
Average annual risk:  0.707117  (USD bn)
Residual risk:        0.09423   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.48543          14.4015         9.69517
Beach nourishment          1.95676          11.2394         5.74386
Seawall                   10.0542            0.0372843      0.00370833
Building code             10.418            13.4214         1.2883

--------------------  --------  --------
Total climate risk:   53.6858   (USD bn)
Average annual risk:   6.12413  (USD bn)
Residual risk:        14.5862   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.03832           10.4022        10.0183
Beach nourishment          1.36779            8.21421        6.00547
Seawall                    7.02795            0.424078       0.0603417
Building code              7.28221           36.9875         5.07916

--------------------  --------  --------
Total climate risk:   147.95    (USD bn)
Average annual risk:   17.0906  (USD bn)
Residual risk:         91.9219  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.03832           10.1922         9.81605
Beach nourishment          1.36779            8.04273        5.8801
Seawall                    7.02795            0.424078       0.0603417
Building code              7.28221           36.8826         5.06476

--------------------  --------  --------
Total climate risk:   147.53    (USD bn)
Average annual risk:   17.0906  (USD bn)
Residual risk:         91.9888  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.03832             7.62417        7.34277
Beach nourishment          1.36779             5.98715        4.37725
Seawall                    7.02795             1.30529        0.185729
Building code              7.28221            43.2448         5.93842

--------------------  --------  --------
Total climate risk:   172.979   (USD bn)
Average annual risk:   20.0035  (USD bn)
Residual risk:        114.818   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.28098           10.4022          8.12051
Beach nourishment          1.68745            8.21421         4.86783
Seawall                    8.67041            0.424078        0.048911
Building code              8.98409           36.9875          4.117

--------------------  --------  --------
Total climate risk:   147.95    (USD bn)
Average annual risk:   17.0906  (USD bn)
Residual risk:         91.9219  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.28098             7.41416        5.78787
Beach nourishment          1.68745             5.81568        3.44644
Seawall                    8.67041             1.30529        0.150546
Building code              8.98409            43.1399         4.80182

--------------------  --------  --------
Total climate risk:   172.56    (USD bn)
Average annual risk:   20.0035  (USD bn)
Residual risk:        114.885   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.40806          14.7297        10.461
Beach nourishment          1.85485          11.6598         6.2861
Seawall                    9.53057           0.0633377      0.00664574
Building code              9.87537          19.3421         1.95862

--------------------  --------  --------
Total climate risk:   77.3685   (USD bn)
Average annual risk:   8.85395  (USD bn)
Residual risk:        31.5735   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.40806          14.7131        10.4492
Beach nourishment          1.85485          11.6462         6.27878
Seawall                    9.53057           0.0633377      0.00664574
Building code              9.87537          19.3338         1.95778

--------------------  --------  --------
Total climate risk:   77.3353   (USD bn)
Average annual risk:   8.85395  (USD bn)
Residual risk:        31.5788   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.40806           12.9695         9.21086
Beach nourishment          1.85485           10.0334         5.40926
Seawall                    9.53057            0.255559       0.0268147
Building code              9.87537           33.6892         3.41144

--------------------  --------  --------
Total climate risk:   134.757   (USD bn)
Average annual risk:   15.5328  (USD bn)
Residual risk:         77.8092  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.17981          14.7297        12.4848
Beach nourishment          1.55418          11.6598         7.50222
Seawall                    7.98564           0.0633377      0.00793144
Building code              8.27455          19.3421         2.33754

--------------------  --------  --------
Total climate risk:   77.3685   (USD bn)
Average annual risk:   8.85395  (USD bn)
Residual risk:        31.5735   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.17981           12.9529        10.9787
Beach nourishment          1.55418           10.0198         6.44702
Seawall                    7.98564            0.255559       0.0320023
Building code              8.27455           33.6809         4.07042

--------------------  --------  --------
Total climate risk:   134.724   (USD bn)
Average annual risk:   15.5328  (USD bn)
Residual risk:         77.8145  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.23081             7.6526         6.21754
Beach nourishment          1.62135             5.92005        3.65131
Seawall                    8.33079             1.85488        0.222653
Building code              8.63219            45.0948         5.22403

--------------------  --------  --------
Total climate risk:   180.379   (USD bn)
Average annual risk:   20.8872  (USD bn)
Residual risk:        119.857   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.23081             7.63598        6.20404
Beach nourishment          1.62135             5.90648        3.64294
Seawall                    8.33079             1.85488        0.222653
Building code              8.63219            45.0865         5.22307

--------------------  --------  --------
Total climate risk:   180.346   (USD bn)
Average annual risk:   20.8872  (USD bn)
Residual risk:        119.862   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.23081         1.42968         1.16158
Beach nourishment          1.62135         1.16579         0.719024
Seawall                    8.33079         0.000211051     2.53339e-05
Building code              8.63219         0.776677        0.0899746

--------------------  ---------  --------
Total climate risk:    3.10671   (USD bn)
Average annual risk:   0.256394  (USD bn)
Residual risk:        -0.265652  (USD bn)
--------------------  ---------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.36488             7.6526         5.60678
Beach nourishment          1.79797             5.92005        3.29263
Seawall                    9.23829             1.85488        0.200781
Building code              9.57251            45.0948         4.71086

--------------------  --------  --------
Total climate risk:   180.379   (USD bn)
Average annual risk:   20.8872  (USD bn)
Residual risk:        119.857   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.36488         1.41306         1.0353
Beach nourishment          1.79797         1.15222         0.640845
Seawall                    9.23829         0.000211051     2.28453e-05
Building code              9.57251         0.768379        0.0802693

--------------------  ---------  --------
Total climate risk:    3.07351   (USD bn)
Average annual risk:   0.256394  (USD bn)
Residual risk:        -0.260358  (USD bn)
--------------------  ---------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.17213           13.837         11.805
Beach nourishment          1.54406           10.7848         6.98471
Seawall                    7.93365            0.179075       0.0225716
Building code              8.22067           29.6506         3.60683

--------------------  --------  --------
Total climate risk:   118.602   (USD bn)
Average annual risk:   13.7089  (USD bn)
Residual risk:         64.1509  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.17213           13.8204        11.7908
Beach nourishment          1.54406           10.7712         6.97592
Seawall                    7.93365            0.179075       0.0225716
Building code              8.22067           29.6423         3.60582

--------------------  --------  --------
Total climate risk:   118.569   (USD bn)
Average annual risk:   13.7089  (USD bn)
Residual risk:         64.1562  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.17213          5.34363         4.5589
Beach nourishment          1.54406          4.29571         2.78209
Seawall                    7.93365          0.00754426      0.00095092
Building code              8.22067          3.54547         0.431287

--------------------  ---------  --------
Total climate risk:   14.1819    (USD bn)
Average annual risk:   1.55655   (USD bn)
Residual risk:         0.989514  (USD bn)
--------------------  ---------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.41405           13.837            9.78538
Beach nourishment          1.86274           10.7848           5.78975
Seawall                    9.57109            0.179075         0.01871
Building code              9.91736           29.6506           2.98977

--------------------  --------  --------
Total climate risk:   118.602   (USD bn)
Average annual risk:   13.7089  (USD bn)
Residual risk:         64.1509  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.41405          5.32701        3.7672
Beach nourishment          1.86274          4.28214        2.29884
Seawall                    9.57109          0.00754426     0.000788235
Building code              9.91736          3.53717        0.356664

--------------------  ---------  --------
Total climate risk:   14.1487    (USD bn)
Average annual risk:   1.55655   (USD bn)
Residual risk:         0.994808  (USD bn)
--------------------  ---------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.36004             6.70078        4.9269
Beach nourishment          1.79159             5.27157        2.9424
Seawall                    9.2055              3.60281        0.391376
Building code              9.53854            48.1333         5.0462

--------------------  -------  --------
Total climate risk:   192.533  (USD bn)
Average annual risk:   22.268  (USD bn)
Residual risk:        128.825  (USD bn)
--------------------  -------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.36004             6.68416        4.91468
Beach nourishment          1.79159             5.258          2.93483
Seawall                    9.2055              3.60281        0.391376
Building code              9.53854            48.125          5.04533

--------------------  -------  --------
Total climate risk:   192.5    (USD bn)
Average annual risk:   22.268  (USD bn)
Residual risk:        128.83   (USD bn)
--------------------  -------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.36004            8.74424        6.42941
Beach nourishment          1.79159            6.76879        3.7781
Seawall                    9.2055             0.617933       0.0671265
Building code              9.53854           39.2601         4.11595

--------------------  --------  --------
Total climate risk:   157.041   (USD bn)
Average annual risk:   18.1373  (USD bn)
Residual risk:        101.649   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.23618             6.70078         5.42056
Beach nourishment          1.62843             5.27157         3.23722
Seawall                    8.36715             3.60281         0.43059
Building code              8.66986            48.1333          5.5518

--------------------  -------  --------
Total climate risk:   192.533  (USD bn)
Average annual risk:   22.268  (USD bn)
Residual risk:        128.825  (USD bn)
--------------------  -------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.23618            8.72762        7.06016
Beach nourishment          1.62843            6.75522        4.14831
Seawall                    8.36715            0.617933       0.0738523
Building code              8.66986           39.2518         4.52739

--------------------  --------  --------
Total climate risk:   157.007   (USD bn)
Average annual risk:   18.1373  (USD bn)
Residual risk:        101.655   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.27634          10.7463         8.41962
Beach nourishment          1.68133           8.75119        5.20491
Seawall                    8.63899           0.0192535      0.00222868
Building code              8.95154           7.73749        0.864375

--------------------  --------  --------
Total climate risk:   30.95     (USD bn)
Average annual risk:   3.48553  (USD bn)
Residual risk:         3.6957   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.27634          10.5363         8.25508
Beach nourishment          1.68133           8.57972        5.10293
Seawall                    8.63899           0.0192535      0.00222868
Building code              8.95154           7.63263        0.852661

--------------------  --------  --------
Total climate risk:   30.5305   (USD bn)
Average annual risk:   3.48553  (USD bn)
Residual risk:         3.7626   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.27634             7.34786        5.75697
Beach nourishment          1.68133             5.82729        3.46588
Seawall                    8.63899             2.57386        0.297936
Building code              8.95154            46.6202         5.20807

--------------------  --------  --------
Total climate risk:   186.481   (USD bn)
Average annual risk:   21.5861  (USD bn)
Residual risk:        124.112   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.06922          10.7463        10.0506
Beach nourishment          1.40849           8.75119        6.21319
Seawall                    7.23706           0.0192535      0.00266041
Building code              7.49889           7.73749        1.03182

--------------------  --------  --------
Total climate risk:   30.95     (USD bn)
Average annual risk:   3.48553  (USD bn)
Residual risk:         3.6957   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.06922             7.13786         6.67577
Beach nourishment          1.40849             5.65582         4.01553
Seawall                    7.23706             2.57386         0.35565
Building code              7.49889            46.5153          6.20296

--------------------  --------  --------
Total climate risk:   186.061   (USD bn)
Average annual risk:   21.5861  (USD bn)
Residual risk:        124.179   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.47517            8.25573        5.59646
Beach nourishment          1.94325            6.27247        3.22783
Seawall                    9.98477            0.913258       0.0914651
Building code             10.346             41.4426         4.00566

--------------------  --------  --------
Total climate risk:   165.77    (USD bn)
Average annual risk:   19.2207  (USD bn)
Residual risk:        108.886   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.47517            8.4325         5.71629
Beach nourishment          1.94325            6.41681        3.3021
Seawall                    9.98477            0.913258       0.0914651
Building code             10.346             41.5308         4.01419

--------------------  --------  --------
Total climate risk:   166.123   (USD bn)
Average annual risk:   19.2207  (USD bn)
Residual risk:        108.83    (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.47517           14.8302        10.0532
Beach nourishment          1.94325           11.6698         6.0053
Seawall                    9.98477            0.107719       0.0107883
Building code             10.346             24.2773         2.34654

--------------------  -------  --------
Total climate risk:   97.1092  (USD bn)
Average annual risk:  11.23    (USD bn)
Residual risk:        46.2242  (USD bn)
--------------------  -------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.32238            8.25573         6.24311
Beach nourishment          1.74197            6.27247         3.60078
Seawall                    8.95058            0.913258        0.102033
Building code              9.2744            41.4426          4.46849

--------------------  --------  --------
Total climate risk:   165.77    (USD bn)
Average annual risk:   19.2207  (USD bn)
Residual risk:        108.886   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.32238           15.0069        11.3485
Beach nourishment          1.74197           11.8141         6.78203
Seawall                    8.95058            0.107719       0.0120348
Building code              9.2744            24.3656         2.62718

--------------------  -------  --------
Total climate risk:   97.4622  (USD bn)
Average annual risk:  11.23    (USD bn)
Residual risk:        46.1679  (USD bn)
--------------------  -------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.09575           7.17439         6.54746
Beach nourishment          1.44344           5.77212         3.99886
Seawall                    7.41667           0.0119838       0.0016158
Building code              7.68499           5.24942         0.683074

--------------------  --------  --------
Total climate risk:   20.9977   (USD bn)
Average annual risk:   2.37505  (USD bn)
Residual risk:         2.78976  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.09575           7.32699         6.68672
Beach nourishment          1.44344           5.89672         4.08518
Seawall                    7.41667           0.0119838       0.0016158
Building code              7.68499           5.32561         0.692989

--------------------  --------  --------
Total climate risk:   21.3025   (USD bn)
Average annual risk:   2.37505  (USD bn)
Residual risk:         2.74115  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.09575            9.62594        8.78478
Beach nourishment          1.44344            7.31975        5.07104
Seawall                    7.41667            0.510076       0.0687743
Building code              7.68499           37.975          4.94145

--------------------  --------  --------
Total climate risk:   151.9     (USD bn)
Average annual risk:   17.6093  (USD bn)
Residual risk:         96.4691  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.22369           7.17439        5.8629
Beach nourishment          1.61198           5.77212        3.58077
Seawall                    8.28264           0.0119838      0.00144686
Building code              8.58229           5.24942        0.611657

--------------------  --------  --------
Total climate risk:   20.9977   (USD bn)
Average annual risk:   2.37505  (USD bn)
Residual risk:         2.78976  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.22369            9.77854        7.991
Beach nourishment          1.61198            7.44435        4.61815
Seawall                    8.28264            0.510076       0.0615838
Building code              8.58229           38.0512         4.43368

--------------------  --------  --------
Total climate risk:   152.205   (USD bn)
Average annual risk:   17.6093  (USD bn)
Residual risk:         96.4205  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.32819            8.81404        6.63614
Beach nourishment          1.74963            6.91414        3.95177
Seawall                    8.98991            0.751479       0.0835913
Building code              9.31515           40.5077         4.34858

--------------------  --------  --------
Total climate risk:   162.031   (USD bn)
Average annual risk:   18.7434  (USD bn)
Residual risk:        105.044   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.32819            8.96663        6.75103
Beach nourishment          1.74963            7.03873        4.02299
Seawall                    8.98991            0.751479       0.0835913
Building code              9.31515           40.5839         4.35676

--------------------  --------  --------
Total climate risk:   162.336   (USD bn)
Average annual risk:   18.7434  (USD bn)
Residual risk:        104.995   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.32819           3.76829       2.83717
Beach nourishment          1.74963           3.04628       1.7411
Seawall                    8.98991           0.0047429     0.000527581
Building code              9.31515           2.43894       0.261825

--------------------  --------  --------
Total climate risk:   9.75575   (USD bn)
Average annual risk:  1.02177   (USD bn)
Residual risk:        0.497501  (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.40065            8.81404        6.29282
Beach nourishment          1.84508            6.91414        3.74733
Seawall                    9.48038            0.751479       0.0792668
Building code              9.82336           40.5077         4.12361

--------------------  --------  --------
Total climate risk:   162.031   (USD bn)
Average annual risk:   18.7434  (USD bn)
Residual risk:        105.044   (USD bn)
--------------------  --------  --------
Net Present Values
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/openpyxl/worksheet/_reader.py:312: UserWarning: Unknown extension is not supported and will be removed
  warn(msg)

Measure              Cost (USD bn)    Benefit (USD bn)    Benefit/Cost
-----------------  ---------------  ------------------  --------------
Mangroves                  1.40065           3.92089       2.79934
Beach nourishment          1.84508           3.17088       1.71855
Seawall                    9.48038           0.0047429     0.000500287
Building code              9.82336           2.51513       0.256036

--------------------  --------  --------
Total climate risk:   10.0605   (USD bn)
Average annual risk:   1.02177  (USD bn)
Residual risk:         0.44889  (USD bn)
--------------------  --------  --------
Net Present Values

The output of CostBenefit.calc is rather complex in its structure. The metrics dictionary inherits this complexity.

[20]:
#Top level metrics keys
macro_metrics = output_cb.uncertainty_metrics
macro_metrics
[20]:
['imp_meas_present',
 'imp_meas_future',
 'tot_climate_risk',
 'benefit',
 'cost_ben_ratio']
[21]:
# The benefits and cost_ben_ratio are available for each measure
output_cb.get_uncertainty(metric_list=['benefit', 'cost_ben_ratio']).tail()
[21]:
Mangroves Benef Beach nourishment Benef Seawall Benef Building code Benef Mangroves CostBen Beach nourishment CostBen Seawall CostBen Building code CostBen
45 8.814039e+09 6.914137e+09 7.514788e+08 4.050774e+10 0.150690 0.253051 11.962963 0.229960
46 8.966634e+09 7.038734e+09 7.514788e+08 4.058393e+10 0.148126 0.248572 11.962963 0.229528
47 3.768293e+09 3.046279e+09 4.742905e+06 2.438938e+09 0.352464 0.574350 1895.444529 3.819348
48 8.814039e+09 6.914137e+09 7.514788e+08 4.050774e+10 0.158911 0.266857 12.615625 0.242506
49 3.920888e+09 3.170876e+09 4.742905e+06 2.515132e+09 0.357228 0.581884 1998.854177 3.905703
[22]:
# The impact_meas_present and impact_meas_future provide values of the cost_meas, risk_transf, risk,
# and cost_ins for each measure
output_cb.get_uncertainty(metric_list=['imp_meas_present']).tail()
[22]:
no measure - risk - present no measure - risk_transf - present no measure - cost_meas - present no measure - cost_ins - present Mangroves - risk - present Mangroves - risk_transf - present Mangroves - cost_meas - present Mangroves - cost_ins - present Beach nourishment - risk - present Beach nourishment - risk_transf - present Beach nourishment - cost_meas - present Beach nourishment - cost_ins - present Seawall - risk - present Seawall - risk_transf - present Seawall - cost_meas - present Seawall - cost_ins - present Building code - risk - present Building code - risk_transf - present Building code - cost_meas - present Building code - cost_ins - present
45 9.696915e+07 0.0 0 0 4.841883e+07 0 1.311768e+09 1 5.732646e+07 0 1.728000e+09 1 9.696915e+07 0 8.878779e+09 1 7.272686e+07 0 9.200000e+09 1
46 1.272486e+08 0.0 0 0 6.353802e+07 0 1.311768e+09 1 7.522713e+07 0 1.728000e+09 1 1.272486e+08 0 8.878779e+09 1 9.543644e+07 0 9.200000e+09 1
47 9.696915e+07 0.0 0 0 4.841883e+07 0 1.311768e+09 1 5.732646e+07 0 1.728000e+09 1 9.696915e+07 0 8.878779e+09 1 7.272686e+07 0 9.200000e+09 1
48 9.696915e+07 0.0 0 0 4.841883e+07 0 1.311768e+09 1 5.732646e+07 0 1.728000e+09 1 9.696915e+07 0 8.878779e+09 1 7.272686e+07 0 9.200000e+09 1
49 1.272486e+08 0.0 0 0 6.353802e+07 0 1.311768e+09 1 7.522713e+07 0 1.728000e+09 1 1.272486e+08 0 8.878779e+09 1 9.543644e+07 0 9.200000e+09 1

We can plot the distributions for the top metrics or our choice.

[23]:
# tot_climate_risk and benefit
output_cb.plot_uncertainty(metric_list=['benefit'], figsize=(12,8));
../_images/tutorial_climada_engine_unsequa_114_0.png

Analogously to the impact example, now that we have a metric distribution, we can compute the sensitivity indices. Since we used the default sampling method, we can use the default sensitivity analysis method. However, since we used calc_second_order = False for the sampling, we need to specify the same for the sensitivity analysis.

[24]:
output_cb = unc_cb.sensitivity(output_cb, sensitivity_kwargs={'calc_second_order':False})
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/SALib/analyze/sobol.py:87: RuntimeWarning: invalid value encountered in true_divide
  Y = (Y - Y.mean()) / Y.std()
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/SALib/analyze/sobol.py:137: RuntimeWarning: invalid value encountered in double_scalars
  return np.mean(B * (AB - A), axis=0) / np.var(np.r_[A, B], axis=0)
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/SALib/analyze/sobol.py:137: RuntimeWarning: invalid value encountered in true_divide
  return np.mean(B * (AB - A), axis=0) / np.var(np.r_[A, B], axis=0)
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/SALib/analyze/sobol.py:143: RuntimeWarning: invalid value encountered in double_scalars
  return 0.5 * np.mean((A - AB) ** 2, axis=0) / np.var(np.r_[A, B], axis=0)
/Users/ckropf/opt/anaconda3/envs/climada_310/lib/python3.8/site-packages/SALib/analyze/sobol.py:143: RuntimeWarning: invalid value encountered in true_divide
  return 0.5 * np.mean((A - AB) ** 2, axis=0) / np.var(np.r_[A, B], axis=0)

The sensitivity indices can be plotted. For the default method ‘sobol’, by default the ‘S1’ sensitivity index is plotted.

Note that since we have quite a few measures, the plot must be adjusted a bit or dropped. Also see that for many metrics, the sensitivity to certain uncertainty parameters appears to be 0. However, this result is to be treated with care. Indeed, we used for demonstration purposes a rather too low number of samples, which is indicated by large confidence intervals (vertical black lines) for most sensitivity indices. For a more robust result the analysis should be repeated with more samples.

[25]:
#plot only certain metrics
axes = output_cb.plot_sensitivity(metric_list=['cost_ben_ratio','tot_climate_risk','benefit'], figsize=(15,8));
../_images/tutorial_climada_engine_unsequa_118_0.png
[ ]: