RDG-Networks 0.2.1__tar.gz → 0.2.2__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/PKG-INFO +1 -1
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/RDG_Networks.egg-info/PKG-INFO +1 -1
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/RDG_networks/generate_line_segments_dynamic.py +3 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/setup.py +1 -1
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/LICENSE.txt +0 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/RDG_Networks.egg-info/SOURCES.txt +0 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/RDG_Networks.egg-info/dependency_links.txt +0 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/RDG_Networks.egg-info/entry_points.txt +0 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/RDG_Networks.egg-info/requires.txt +0 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/RDG_Networks.egg-info/top_level.txt +0 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/RDG_networks/Classes.py +0 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/RDG_networks/__init__.py +0 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/RDG_networks/draw_segments.py +0 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/RDG_networks/generate_line_network.py +0 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/RDG_networks/generate_line_segments.py +0 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/RDG_networks/get_intersection_segments.py +0 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/RDG_networks/sample_in_polygon.py +0 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/README.md +0 -0
- {RDG-Networks-0.2.1 → RDG-Networks-0.2.2}/setup.cfg +0 -0
@@ -104,6 +104,9 @@ def check_and_update_when_intersect(lines: List[Dict[str, Any]], epsilon: float)
|
|
104
104
|
if j1['id'][:-2] == j2['id'][:-2] or index2 < index1:
|
105
105
|
continue
|
106
106
|
|
107
|
+
if j1['growth_status'] == False and j2['growth_status'] == False:
|
108
|
+
continue
|
109
|
+
|
107
110
|
line1 = LineString([j1['start'], j1['end']])
|
108
111
|
line2 = LineString([j2['start'], j2['end']])
|
109
112
|
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|