remove min_length from added road detection

This commit is contained in:
Will Bradley 2025-06-28 19:10:27 -07:00
parent 01ce4eec5c
commit 32566cec12

View File

@ -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'))