You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue was caused in add_shore_points_to_timeseries where idx = timeseries_data['transect_id'].str.contains(transect_id) was selecting not the extract transect id and would sometimes overwrite existing transects with similar ids. To fix this issue, that line was replaced with idx = timeseries_data['transect_id']==transect_id
No description provided.
The text was updated successfully, but these errors were encountered: