Skip to content

Commit

Permalink
v1.1.23 close #207 uncomment remove_inaccurate_georef
Browse files Browse the repository at this point in the history
  • Loading branch information
2320sharon committed Dec 15, 2023
1 parent 94e0ed1 commit 7d4a60e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "coastseg"
dynamic = ["readme"]
version = "1.1.23.dev1"
version = "1.1.23"
authors = [
{ name=" Sharon Fitzpatrick", email="[email protected]" },
]
Expand Down
9 changes: 4 additions & 5 deletions src/coastseg/extracted_shoreline.py
Original file line number Diff line number Diff line change
Expand Up @@ -1789,11 +1789,10 @@ def create_extracted_shorelines_from_session(
# postprocessing by removing duplicates and removing in inaccurate georeferencing (set threshold to 10 m)
extracted_shorelines_dict = remove_duplicates(
extracted_shorelines_dict
) # removes duplicates (images taken on the same date by the same satellite)
# @TODO: uncomment this for the standard release
# extracted_shorelines_dict = remove_inaccurate_georef(
# extracted_shorelines_dict, 10
# ) # remove inaccurate georeferencing (set threshold to 10 m)
) # removes duplicates (images taken on the same date by the same satellite
extracted_shorelines_dict = remove_inaccurate_georef(
extracted_shorelines_dict, 10
) # remove inaccurate georeferencing (set threshold to 10 m)

# Check and log 'reference shoreline' if it exists
ref_sl = extracted_shorelines_dict.get("shorelines", np.array([]))
Expand Down

0 comments on commit 7d4a60e

Please sign in to comment.