Skip to content

Commit

Permalink
v1.1.23.dev1 comment out remove_inaccurate_georef
Browse files Browse the repository at this point in the history
  • Loading branch information
2320sharon committed Dec 15, 2023
1 parent e027792 commit 94e0ed1
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 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.22"
version = "1.1.23.dev1"
authors = [
{ name=" Sharon Fitzpatrick", email="[email protected]" },
]
Expand Down
7 changes: 4 additions & 3 deletions src/coastseg/extracted_shoreline.py
Original file line number Diff line number Diff line change
Expand Up @@ -1790,9 +1790,10 @@ def create_extracted_shorelines_from_session(
extracted_shorelines_dict = remove_duplicates(
extracted_shorelines_dict
) # 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)
# @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)

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

0 comments on commit 94e0ed1

Please sign in to comment.