|
|
@ -486,7 +486,7 @@ def process(beach_name, beach_scenario, n_runs, start_year, end_year,
|
|
|
|
df_out = df_out.assign(segment_gaps=False)
|
|
|
|
df_out = df_out.assign(segment_gaps=False)
|
|
|
|
for b, p, in zip(segment_gaps['block'],
|
|
|
|
for b, p, in zip(segment_gaps['block'],
|
|
|
|
segment_gaps['profile']):
|
|
|
|
segment_gaps['profile']):
|
|
|
|
idx = (df_out['block'] == str(b)) & (df_out['profile']
|
|
|
|
idx = (str(df_out['block']) == str(b)) & (df_out['profile']
|
|
|
|
== p)
|
|
|
|
== p)
|
|
|
|
df_out.loc[idx, 'segment_gaps'] = True
|
|
|
|
df_out.loc[idx, 'segment_gaps'] = True
|
|
|
|
|
|
|
|
|
|
|
|