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
geoarray
Commits
fc9dec21
Commit
fc9dec21
authored
Mar 16, 2022
by
Daniel Scheffler
Browse files
Fixed non-bool return value.
parent
aae799b2
Pipeline
#40200
passed with stages
in 2 minutes and 14 seconds
Changes
1
Pipelines
2
Show whitespace changes
Inline
Side-by-side
geoarray/baseclasses.py
View file @
fc9dec21
...
...
@@ -369,7 +369,7 @@ class GeoArray(object):
def
is_rotated
(
self
):
# type: () -> bool
"""Return 'True' if the image has a rotation in the map info (i.e., is pseudo-projected)."""
return
self
.
gt
[
2
]
or
self
.
gt
[
4
]
return
self
.
gt
[
2
]
!=
0
or
self
.
gt
[
4
]
!=
0
@
property
def
nodata
(
self
):
...
...
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