From 32566cec12fa94e22e6fde54e9d9852e64ddc6a1 Mon Sep 17 00:00:00 2001 From: Will Bradley Date: Sat, 28 Jun 2025 19:10:27 -0700 Subject: [PATCH] remove min_length from added road detection --- threaded.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/threaded.py b/threaded.py index 50b5dfd..37ac125 100644 --- a/threaded.py +++ b/threaded.py @@ -293,7 +293,8 @@ class RoadComparator: # Include the entire road if: # 1. The uncovered portion is above minimum threshold, AND # 2. More than 50% of the road is uncovered - if uncovered_length >= min_length_deg and uncovered_ratio > 0.5: + if uncovered_ratio > 0.5: + #uncovered_length >= min_length_deg and # Include entire original road with all original metadata properties = dict(row.drop('geometry'))