Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
Daniel Scheffler
py_tools_ds
Commits
5ca9dfe0
Commit
5ca9dfe0
authored
Oct 06, 2017
by
Daniel Scheffler
Browse files
Updated Test_move_shapelyPoly_to_image_grid.
parent
064d1108
Pipeline
#1291
passed with stages
in 11 minutes and 34 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
tests/test_coord_grid.py
View file @
5ca9dfe0
...
...
@@ -19,5 +19,9 @@ poly_local = Polygon([(5708.2, -3006), (5708, -3262), (5452, -3262), (5452, -300
class
Test_move_shapelyPoly_to_image_grid
(
unittest
.
TestCase
):
# TODO test different roundAlgs
def
test_image_coord_grid
(
self
):
print
(
move_shapelyPoly_to_image_grid
(
poly_local
,
(
0
,
1
,
0
,
0
,
0
,
-
1
),
rows
=
6281
,
cols
=
11162
))
poly_on_grid
=
move_shapelyPoly_to_image_grid
(
poly_local
,
(
0
,
1
,
0
,
0
,
0
,
-
1
),
rows
=
6281
,
cols
=
11162
)
self
.
assertTrue
(
isinstance
(
poly_on_grid
,
Polygon
))
self
.
assertEqual
(
str
(
poly_on_grid
),
'POLYGON ((5708 -3262, 5708 -3006, 5452 -3006, 5452 -3262, 5708 -3262))'
)
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