Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
stw
wt
exercisemodel
Commits
2b0d555f
Commit
2b0d555f
authored
Dec 14, 2017
by
Tomas Pettersson
🏸
Browse files
1000 section length on tree
parent
8aadeb67
Changes
3
Hide whitespace changes
Inline
Side-by-side
exercisemodel/__init__.py
View file @
2b0d555f
...
...
@@ -23,7 +23,7 @@ def storetree():
sections
=
[]
for
line
in
lines
:
if
len
(
section
)
==
10
:
if
len
(
section
)
==
10
00
:
sections
.
append
(
LineString
(
section
))
section
=
[]
if
'-999999'
in
line
:
...
...
exercisemodel/model.py
View file @
2b0d555f
...
...
@@ -285,10 +285,11 @@ class Model(object):
deactivepoints
=
[]
linestring
=
geometry
.
shape
(
exercisefeature
[
'geometry'
])
latlngpoints
=
[[
latlng
[
1
],
latlng
[
0
]]
for
latlng
in
linestring
.
coords
]
print
(
'before matches'
)
matches
=
strtree
.
query
(
LineString
(
latlngpoints
))
#
print('matches: '+str(matches))
print
(
'matches: '
+
str
(
matches
))
for
i
,
coord
in
enumerate
(
linestring
.
coords
):
#
start = time.time()
start
=
time
.
time
()
if
(
len
(
mp
.
geoms
)
>
0
):
points
=
self
.
centerPoints
(
coord
,
mp
.
centroid
,
mp
.
geoms
)
displacedpoints
=
self
.
displacePoints
(
pDist
,
points
)
...
...
@@ -296,8 +297,8 @@ class Model(object):
deactivepoints
+=
onlandpoints
# print('active: '+str(len(activepoints)))
# print('onland: '+str(len(onlandpoints)))
#
end = time.time()
#
print('onland: '+str(end-start))
end
=
time
.
time
()
print
(
'onland: '
+
str
(
end
-
start
))
mp
=
geometry
.
MultiPoint
(
activepoints
+
deactivepoints
)
level
=
[
0
]
*
len
(
mp
.
geoms
)
category
=
[
2
]
*
len
(
mp
.
geoms
)
...
...
exercisemodel/resources/strtree.pickle
View file @
2b0d555f
No preview for this file type
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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