Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Zoo Classifier Workflow Update #197

Open
3 tasks done
2320sharon opened this issue Oct 5, 2023 · 9 comments
Open
3 tasks done

Zoo Classifier Workflow Update #197

2320sharon opened this issue Oct 5, 2023 · 9 comments
Assignees
Labels
bug Something isn't working V2 for version 2 of coastseg

Comments

@2320sharon
Copy link
Collaborator

2320sharon commented Oct 5, 2023

The zoo classifier notebook is not fully up to date with the workflows present in the coastsat classifier Notebook. We are making a push to improve the workflows in that notebook in the coming months so I've created this issue to compile the changes that will need to be made.

Bugs

  1. Cloud Mask Application Issue

    • Cloud masks are applied to the Shoreline extraction process regardless of the toggle state.
    • Note: This discrepancy isn't present in the Coastsat classifier Notebook.
  2. simplified_find_contours Modification Issue

    • Due to the modifications in the simplified_find_contours function, shorelines now appear as closed line string segments.
  3. Reference Shoreline Buffer Issue

    • The reference Shoreline buffer used in simplified_find_contours doesn't undergo a dilation of 5 pixels, contrary to the workflow in the Coastsat classifier.

Related Issues

We aim to address these issues in the coming months to ensure seamless and efficient workflows. Feedback and contributions are welcome.

@2320sharon 2320sharon added bug Something isn't working V2 for version 2 of coastseg labels Oct 5, 2023
@2320sharon 2320sharon self-assigned this Oct 5, 2023
2320sharon added a commit that referenced this issue Oct 5, 2023
@2320sharon
Copy link
Collaborator Author

2320sharon commented Oct 20, 2023

  • Organize the settings like the coastsat classifier notebook

@2320sharon
Copy link
Collaborator Author

The zoo workflow is significantly less intuitive than the coastsat workflow. It doesn't let you run the model or extract shorelines for multiple ROIs at the same time unlike the coastsat workflow. I think the workflow needs to be updated so that the user can select a session that contains multiple ROIs and run the model on that directory.

Unfortunately I can't make this change in time for tomorrow. Given that I still need to work on #198 and #179.

  • make the select images work for sessions containing multiple ROIs
  • Make the extract shorelines widget work for sessions containing multiple ROIs
  • Make correct tides work for sessions containing multiple ROIs

@2320sharon
Copy link
Collaborator Author

  • When cloud mask is toggled to off make sure it doesn't show up in the segmentations

2320sharon added a commit that referenced this issue Oct 23, 2023
@2320sharon
Copy link
Collaborator Author

After a bit of digging I found out that the reason why the cloud mask shows up in the image segmentation even when the cloud mask is off is because the cloud mask was already applied to the downloaded jpgs the model is running the segmentations on. The reason they don't show up in the final extracted shoreline diagrams is because those diagrams are created from the tifs being converted to jpgs without the cloud mask.

So if we want to see the cloud mask in the outputted segmentations then we would need to re-read the tifs, create a new RGB jpg, then run the model on these making the model even slower. I can make this a feature but its going to take some extra work.

@2320sharon
Copy link
Collaborator Author

You should probably fix these future warning in coastsat package while you do this

C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-01-06 15:41:11' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-02-15 15:42:34' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-03-03 15:42:24' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-04-12 15:40:24' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-04-20 15:41:43' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-04-28 15:40:15' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-06-07 15:40:54' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-07-01 15:40:07' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-07-09 15:40:17' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-07-17 15:40:15' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-08-10 15:39:43' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-09-03 15:40:38' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-09-19 15:40:42' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-10-05 15:40:50' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-10-13 15:38:17' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-10-29 15:37:57' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-12-16 15:36:45' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-12-24 15:40:56' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-01-06 15:41:11' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-02-15 15:42:34' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-03-03 15:42:24' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-04-12 15:40:24' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-04-20 15:41:43' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-04-28 15:40:15' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-06-07 15:40:54' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-07-01 15:40:07' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-07-09 15:40:17' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-07-17 15:40:15' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-08-10 15:39:43' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-09-03 15:40:38' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-09-19 15:40:42' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-10-05 15:40:50' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-10-13 15:38:17' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-10-29 15:37:57' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-12-16 15:36:45' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L7' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:872: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value '2018-12-24 15:40:56' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "date"] = date.strftime("%Y-%m-%d %H:%M:%S")
C:\development\doodleverse\coastsat_package\coastsat_package\src\coastsat\SDS_tools.py:873: FutureWarning: Setting an item of incompatible dtype is deprecated and will raise in a future error of pandas. Value 'L8' has dtype incompatible with float64, please explicitly cast to a compatible dtype first.
  gdf.loc[idx, "satname"] = satname

@2320sharon
Copy link
Collaborator Author

2320sharon commented Dec 22, 2023

Jan Tasks

  • Make sure the zoo workflow is correctly applying the reference shoreline buffer to the extracted shorelines

  • Make sure the zoo workflow can work with multiple ROIs like the CoastSat workflow

  • Analyze why the time series csv files are different from the outputs of coastsat

@2320sharon
Copy link
Collaborator Author

@dbuscombe-usgs Do you think that its necessary to have the zoo workflow works with multiple ROIs at a time like coastseg or can we skip this feature until after the paper release?

@dbuscombe-usgs
Copy link
Member

Depends. It will be necessary eventually, so just depends on how tricky it is to implement. I'm guessing it is more tricky than you'd like to tackle right now, and if so, we can wait

@2320sharon
Copy link
Collaborator Author

  • Make zoo move the model segmentations into the good/bad folder instead of copying them
  • Make zoo move the model segmentation images into the good/bad folder

2320sharon added a commit that referenced this issue Jun 4, 2024
…dicition segmentation png to good/bad & npz to good/bad
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working V2 for version 2 of coastseg
Projects
None yet
Development

No branches or pull requests

2 participants