diff --git a/src/analysis/forecast_twl.py b/src/analysis/forecast_twl.py index 175c887..11ae0ad 100644 --- a/src/analysis/forecast_twl.py +++ b/src/analysis/forecast_twl.py @@ -36,7 +36,6 @@ def forecast_twl( # cross-section profiles once per site. logger.info("Calculating beach slopes") site_ids = df_twl.index.get_level_values("site_id").unique() - # site_ids = [x for x in site_ids if 'NARRA' in x] # todo remove this - for testing narrabeen only if slope == "foreshore": # Process each site_id with a different process and combine results at the end @@ -47,7 +46,6 @@ def forecast_twl( df_twl["beta"] = pd.concat(results) elif slope == "mean": - # todo mean beach profile df_temp = df_twl.join(df_profile_features, how="inner") df_temp["mhw"] = 0.5 with Pool(processes=n_processes) as pool: