Replies: 1 comment 3 replies
-
Hi @Mdf196 , What you are doing is conceptually wrong, as you are altering the underlying data that way. However, isimip2b flood data contains simulations from multiple models and thereby significantly more than 95 years of data. I would recommend you to consider the following points:
I hope this helps |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello everyone, I have a question regarding the issue described in the following topic: #643.
The question is:
While using ISIMIP 2b study data (approximately 95 projected years), is it possible to calculate the flood impact with a 200-year return period by modifying the annual event frequency from 1/95 to 1/200 ? Is this conceptually correct? The mentioned topic says that I can compute up to a maximum of 95 years impact return period.
For example:
`rf = RiverFlood.from_nc(countries = ['Select_your_country'],
origin = False,
years = [2006,2007,.......,2100],
dph_path = "path_to_your_file",
frc_path = "path_to_your_file",
ISINatIDGrid = True,)
for i in range(len(rf.frequency)):
rf.frequency[i] = 0.005
rf.frequency`
In this way, using the calc_freq_curve() and local_exceedance_imp command, it's possible to plot and computer either the EFC and the impact with a 200-year return period, without having always the same exceedance impact values for return periods > 95 years, as the mentioned topic's issue.
But, is it formally correct?
Thank you in advance for the clarifications.
Beta Was this translation helpful? Give feedback.
All reactions