Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
E
exercisemodel
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
stw
wt
exercisemodel
Commits
558bcf75
Commit
558bcf75
authored
Dec 14, 2017
by
Tomas Pettersson
🏸
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
temporary removed onland and tree
parent
d04cf52a
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
13 deletions
+14
-13
exercisemodel/model.py
exercisemodel/model.py
+14
-13
No files found.
exercisemodel/model.py
View file @
558bcf75
...
@@ -285,21 +285,22 @@ class Model(object):
...
@@ -285,21 +285,22 @@ class Model(object):
deactivepoints
=
[]
deactivepoints
=
[]
linestring
=
geometry
.
shape
(
exercisefeature
[
'geometry'
])
linestring
=
geometry
.
shape
(
exercisefeature
[
'geometry'
])
latlngpoints
=
[[
latlng
[
1
],
latlng
[
0
]]
for
latlng
in
linestring
.
coords
]
latlngpoints
=
[[
latlng
[
1
],
latlng
[
0
]]
for
latlng
in
linestring
.
coords
]
print
(
'before matches'
)
#
print('before matches')
matches
=
strtree
.
query
(
LineString
(
latlngpoints
))
#
matches = strtree.query(LineString(latlngpoints))
print
(
'matches: '
+
str
(
matches
))
#
print('matches: '+str(matches))
for
i
,
coord
in
enumerate
(
linestring
.
coords
):
for
i
,
coord
in
enumerate
(
linestring
.
coords
):
start
=
time
.
time
()
#
start = time.time()
if
(
len
(
mp
.
geoms
)
>
0
):
#
if (len(mp.geoms) > 0):
points
=
self
.
centerPoints
(
coord
,
mp
.
centroid
,
mp
.
geoms
)
points
=
self
.
centerPoints
(
coord
,
mp
.
centroid
,
mp
.
geoms
)
displacedpoints
=
self
.
displacePoints
(
pDist
,
points
)
displacedpoints
=
self
.
displacePoints
(
pDist
,
points
)
activepoints
,
onlandpoints
=
self
.
onlandPoints
(
mp
.
geoms
,
displacedpoints
,
matches
)
#
activepoints, onlandpoints = self.onlandPoints(mp.geoms, displacedpoints, matches)
deactivepoints
+=
onlandpoints
#
deactivepoints += onlandpoints
# print('active: '+str(len(activepoints)))
# print('active: '+str(len(activepoints)))
# print('onland: '+str(len(onlandpoints)))
# print('onland: '+str(len(onlandpoints)))
end
=
time
.
time
()
# end = time.time()
print
(
'onland: '
+
str
(
end
-
start
))
# print('onland: '+str(end-start))
mp
=
geometry
.
MultiPoint
(
activepoints
+
deactivepoints
)
# mp = geometry.MultiPoint(activepoints+deactivepoints)
mp
=
geometry
.
MultiPoint
(
displacedpoints
)
level
=
[
0
]
*
len
(
mp
.
geoms
)
level
=
[
0
]
*
len
(
mp
.
geoms
)
category
=
[
2
]
*
len
(
mp
.
geoms
)
category
=
[
2
]
*
len
(
mp
.
geoms
)
properties
=
self
.
createProperties
((
i
+
2
),
timearray
[
i
],
mp
.
centroid
,
level
,
category
)
properties
=
self
.
createProperties
((
i
+
2
),
timearray
[
i
],
mp
.
centroid
,
level
,
category
)
...
@@ -307,7 +308,7 @@ class Model(object):
...
@@ -307,7 +308,7 @@ class Model(object):
if
(
i
%
10
==
0
):
if
(
i
%
10
==
0
):
Cloudtrack
.
write
(
featurecollection
)
Cloudtrack
.
write
(
featurecollection
)
Particletrack
.
write
(
featurecollection
)
Particletrack
.
write
(
featurecollection
)
mp
=
geometry
.
MultiPoint
(
activepoints
)
#
mp = geometry.MultiPoint(activepoints)
print
(
'deactivepoints: '
+
str
(
len
(
deactivepoints
)))
print
(
'deactivepoints: '
+
str
(
len
(
deactivepoints
)))
...
...
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