Commit d5894bd2 authored by Jay's avatar Jay
Browse files

fixes: ratio check is smaller

parent d5b49849
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -530,7 +530,7 @@ def distribute_points_in_geom(geom, method="classic",
        ew = True

    # Decision Tree
    if ratio < 0.16 and geom.area < 0.01:
    if ratio < 0.1 and geom.area < 0.01:
        # Class: Slivers - ignore.
        return np.array([])
    elif geom.area <= 0.004 and ratio >= 0.25: