Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Mayer
CircularGreenSimCity
Commits
9c29c9e4
Commit
9c29c9e4
authored
Mar 26, 2024
by
Eric Duminil
Browse files
Refactor. Trees and Forests.
parent
f45d6803
Changes
3
Hide whitespace changes
Inline
Side-by-side
python_scripts/add_trees_to_open_street_map/add_trees.py
View file @
9c29c9e4
...
@@ -19,7 +19,7 @@ from shapely import LineString, geometry, wkt
...
@@ -19,7 +19,7 @@ from shapely import LineString, geometry, wkt
from
shapely.ops
import
transform
from
shapely.ops
import
transform
from
tree
import
Forest
from
tree
import
Forest
from
import_existing_trees
import
get_existing_
trees
from
import_existing_trees
import
get_existing_
forest
# TODO: Use Args
# TODO: Use Args
# TODO: Document
# TODO: Document
...
@@ -99,17 +99,9 @@ def set_plot(bounds, to_local_coordinates):
...
@@ -99,17 +99,9 @@ def set_plot(bounds, to_local_coordinates):
return
ax
return
ax
def
place_trees
(
existing_trees_coords
,
ways
,
region
,
to_local
,
tree_distance
,
min_distance_2
):
def
place_trees
(
forest
,
ways
,
region
,
to_local
,
tree_distance
,
min_distance_2
):
local_region
=
transform
(
to_local
.
transform
,
region
)
local_region
=
transform
(
to_local
.
transform
,
region
)
existing_trees
=
kdtree
.
create
(
existing_trees_coords
or
[(
0
,
0
)],
dimensions
=
2
)
tree_xs
=
[]
tree_ys
=
[]
for
x
,
y
in
existing_trees_coords
:
tree_xs
.
append
(
x
)
tree_ys
.
append
(
y
)
for
way
in
ways
:
for
way
in
ways
:
width
=
float
(
way
.
tags
.
get
(
"width"
,
0
))
width
=
float
(
way
.
tags
.
get
(
"width"
,
0
))
highway
=
way
.
tags
.
get
(
"highway"
)
highway
=
way
.
tags
.
get
(
"highway"
)
...
@@ -145,12 +137,9 @@ def place_trees(existing_trees_coords, ways, region, to_local, tree_distance, mi
...
@@ -145,12 +137,9 @@ def place_trees(existing_trees_coords, ways, region, to_local, tree_distance, mi
x
=
potential_tree
.
x
x
=
potential_tree
.
x
y
=
potential_tree
.
y
y
=
potential_tree
.
y
if
local_region
.
contains
(
geometry
.
Point
(
x
,
y
)):
if
local_region
.
contains
(
geometry
.
Point
(
x
,
y
)):
_nearest_tree
,
distance_2
=
existing_trees
.
search_nn
((
x
,
y
))
forest
.
add_tree_if_possible
(
min_distance_2
,
x
,
y
)
if
distance_2
>
min_distance_2
:
existing_trees
.
add
((
x
,
y
))
return
forest
.
xs_ys
tree_xs
.
append
(
x
)
tree_ys
.
append
(
y
)
return
tree_xs
,
tree_ys
def
plot_trees
(
bounds
,
tree_xs
,
tree_ys
,
tree_distance
):
def
plot_trees
(
bounds
,
tree_xs
,
tree_ys
,
tree_distance
):
...
@@ -214,15 +203,17 @@ def main(wkt_polygon, epsg_id, tree_distance, min_distance, import_tree_shp):
...
@@ -214,15 +203,17 @@ def main(wkt_polygon, epsg_id, tree_distance, min_distance, import_tree_shp):
ways
=
get_osm_roads
(
bounds
)
ways
=
get_osm_roads
(
bounds
)
if
import_tree_shp
:
if
import_tree_shp
:
existing_
trees
=
get_existing_
trees
(
import_tree_shp
)
existing_
forest
=
get_existing_
forest
(
import_tree_shp
)
else
:
else
:
existing_trees
=
Forest
()
existing_forest
=
Forest
()
print
(
existing_forest
)
to_local
=
Transformer
.
from_crs
(
"EPSG:4326"
,
f
"EPSG:
{
epsg_id
}
"
,
always_xy
=
True
)
to_local
=
Transformer
.
from_crs
(
"EPSG:4326"
,
f
"EPSG:
{
epsg_id
}
"
,
always_xy
=
True
)
set_plot
(
bounds
,
to_local
)
set_plot
(
bounds
,
to_local
)
tree_xs
,
tree_ys
=
place_trees
(
existing_
trees
,
ways
,
region
,
tree_xs
,
tree_ys
=
place_trees
(
existing_
forest
,
ways
,
region
,
to_local
,
tree_distance
,
min_distance
**
2
)
to_local
,
tree_distance
,
min_distance
**
2
)
print
(
existing_forest
)
plot_trees
(
bounds
,
tree_xs
,
tree_ys
,
tree_distance
)
plot_trees
(
bounds
,
tree_xs
,
tree_ys
,
tree_distance
)
export_map
(
bounds
,
tree_xs
,
tree_ys
,
epsg_id
)
export_map
(
bounds
,
tree_xs
,
tree_ys
,
epsg_id
)
...
...
python_scripts/add_trees_to_open_street_map/import_existing_trees.py
View file @
9c29c9e4
import
geopandas
as
gpd
import
geopandas
as
gpd
from
tree
import
Tree
,
Forest
from
tree
import
Tree
,
Forest
def
get_existing_
trees
(
shp_input
):
def
get_existing_
forest
(
shp_input
):
print
(
f
"Importing
{
shp_input
}
"
)
print
(
f
"Importing
{
shp_input
}
"
)
df
=
gpd
.
read_file
(
shp_input
)
df
=
gpd
.
read_file
(
shp_input
)
trees
=
[
Tree
(
p
.
x
,
p
.
y
)
for
p
in
df
.
geometry
]
trees
=
[
Tree
(
p
.
x
,
p
.
y
)
for
p
in
df
.
geometry
]
return
Forest
(
trees
)
return
Forest
(
trees
)
if
__name__
==
"__main__"
:
if
__name__
==
"__main__"
:
print
(
repr
(
get_existing_
trees
(
'existing_trees/Trees_ideal_2_20240227.shp'
)))
print
(
repr
(
get_existing_
forest
(
'existing_trees/Trees_ideal_2_20240227.shp'
)))
python_scripts/add_trees_to_open_street_map/tree.py
View file @
9c29c9e4
from
dataclasses
import
dataclass
from
dataclasses
import
dataclass
import
kdtree
import
kdtree
@
dataclass
@
dataclass
class
Tree
:
class
Tree
:
x
:
float
x
:
float
...
@@ -12,7 +13,7 @@ class Tree:
...
@@ -12,7 +13,7 @@ class Tree:
type
:
str
=
None
type
:
str
=
None
def
__len__
(
self
):
def
__len__
(
self
):
return
2
# x & y
return
2
# x & y
def
__getitem__
(
self
,
i
):
def
__getitem__
(
self
,
i
):
return
[
self
.
x
,
self
.
y
][
i
]
return
[
self
.
x
,
self
.
y
][
i
]
...
@@ -27,9 +28,22 @@ class Forest:
...
@@ -27,9 +28,22 @@ class Forest:
self
.
trees
=
existing_trees
self
.
trees
=
existing_trees
def
add_tree_if_possible
(
self
,
min_distance_2
,
x
,
y
,
*
params
):
_nearest_tree
,
distance_2
=
self
.
kd_tree
.
search_nn
((
x
,
y
))
if
distance_2
>
min_distance_2
:
self
.
kd_tree
.
add
((
x
,
y
))
self
.
trees
.
append
(
Tree
(
x
,
y
,
*
params
))
@
property
def
xs_ys
(
self
):
xs
,
ys
=
[],
[]
for
tree
in
self
.
trees
:
xs
.
append
(
tree
.
x
)
ys
.
append
(
tree
.
y
)
return
xs
,
ys
def
__str__
(
self
):
def
__str__
(
self
):
return
f
"Forest with
{
len
(
self
.
trees
)
}
trees."
return
f
"Forest with
{
len
(
self
.
trees
)
}
trees."
def
__repr__
(
self
):
def
__repr__
(
self
):
return
"
\n
"
.
join
([
str
(
self
)]
+
[
str
(
tree
)
for
tree
in
self
.
trees
])
return
"
\n
"
.
join
([
str
(
self
)]
+
[
str
(
tree
)
for
tree
in
self
.
trees
])
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment