|
|
|
@ -343,8 +343,12 @@ def create_observed_impacts(
|
|
|
|
|
ele=0,
|
|
|
|
|
col_name="width_msl_poststorm",
|
|
|
|
|
)
|
|
|
|
|
df_width_msl_change_m = (df_width_msl_poststorm - df_width_msl_prestorm).rename('width_msl_change_m')
|
|
|
|
|
df_width_msl_change_pct = (df_width_msl_change_m / df_width_msl_prestorm * 100).rename('width_msl_change_pct')
|
|
|
|
|
df_width_msl_change_m = (df_width_msl_poststorm - df_width_msl_prestorm).rename(
|
|
|
|
|
"width_msl_change_m"
|
|
|
|
|
)
|
|
|
|
|
df_width_msl_change_pct = (
|
|
|
|
|
df_width_msl_change_m / df_width_msl_prestorm * 100
|
|
|
|
|
).rename("width_msl_change_pct")
|
|
|
|
|
|
|
|
|
|
# Join beach width change onto observed impacts dataframe
|
|
|
|
|
df_observed_impacts = pd.concat(
|
|
|
|
|