|
|
@ -486,18 +486,17 @@ def process(beach_name, beach_scenario, n_runs, start_year, end_year,
|
|
|
|
df_out.loc[idx, 'segment_gaps'] = True
|
|
|
|
df_out.loc[idx, 'segment_gaps'] = True
|
|
|
|
|
|
|
|
|
|
|
|
# Specify which profiles to plot
|
|
|
|
# Specify which profiles to plot
|
|
|
|
df_out = df_out.assign(plot_stats=False)
|
|
|
|
df_out = df_out.assign(diagnostics=False)
|
|
|
|
for b, p in zip(plot_stats['block'], plot_stats['profile']):
|
|
|
|
for b, p in zip(diagnostics['block'], diagnostics['profile']):
|
|
|
|
idx = (df_out['block'] == str(b)) & (df_out['profile']
|
|
|
|
idx = (df_out['block'] == str(b)) & (df_out['profile']
|
|
|
|
== p)
|
|
|
|
== p)
|
|
|
|
df_out.loc[idx, 'plot_stats'] = True
|
|
|
|
df_out.loc[idx, 'diagnostics'] = True
|
|
|
|
|
|
|
|
|
|
|
|
# Specify which profiles to omit from shapefiles
|
|
|
|
# Specify which profiles to omit from shapefiles
|
|
|
|
df_out = df_out.assign(omit_from_shp=False)
|
|
|
|
df_out = df_out.assign(omit=False)
|
|
|
|
for b, p in zip(omit_from_shp['block'],
|
|
|
|
for b, p in zip(omit['block'], omit['profile']):
|
|
|
|
omit_from_shp['profile']):
|
|
|
|
|
|
|
|
idx = (df_out['block'] == b) & (df_out['profile'] == p)
|
|
|
|
idx = (df_out['block'] == b) & (df_out['profile'] == p)
|
|
|
|
df_out.loc[idx, 'omit_from_shp'] = True
|
|
|
|
df_out.loc[idx, 'omit'] = True
|
|
|
|
|
|
|
|
|
|
|
|
# Specify additional points to be included in shapefiles
|
|
|
|
# Specify additional points to be included in shapefiles
|
|
|
|
df_out = df_out.assign(insert_points='').astype('object')
|
|
|
|
df_out = df_out.assign(insert_points='').astype('object')
|
|
|
|