Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Daniel Scheffler
geoarray
Commits
38ad0f90
Commit
38ad0f90
authored
Mar 15, 2018
by
Daniel Scheffler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed wrong copying of bandnames from GeoArray instance within GeoArray.__init__().
Updated version info (v0.7.13).
parent
dd642a40
Pipeline
#2762
passed with stages
in 1 minute and 40 seconds
Changes
3
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
4 deletions
+4
-4
geoarray/__init__.py
geoarray/__init__.py
+2
-2
geoarray/baseclasses.py
geoarray/baseclasses.py
+1
-1
setup.py
setup.py
+1
-1
No files found.
geoarray/__init__.py
View file @
38ad0f90
...
...
@@ -12,8 +12,8 @@ from .masks import CloudMask # noqa: E402
__author__
=
"""Daniel Scheffler"""
__email__
=
'danschef@gfz-potsdam.de'
__version__
=
'0.7.1
2
'
__versionalias__
=
'v20180
222.012
'
__version__
=
'0.7.1
3
'
__versionalias__
=
'v20180
315.1
'
__all__
=
[
'GeoArray'
,
'BadDataMask'
,
'NoDataMask'
,
...
...
geoarray/baseclasses.py
View file @
38ad0f90
...
...
@@ -91,7 +91,7 @@ class GeoArray(object):
self
.
_initParams
=
dict
([
x
for
x
in
locals
().
items
()
if
x
[
0
]
!=
"self"
])
self
.
geotransform
=
geotransform
or
self
.
geotransform
self
.
projection
=
projection
or
self
.
projection
self
.
bandnames
=
bandnames
or
list
(
self
.
bandnames
.
value
s
())
self
.
bandnames
=
bandnames
or
list
(
self
.
bandnames
.
key
s
())
self
.
_nodata
=
nodata
if
nodata
is
not
None
else
self
.
_nodata
self
.
progress
=
False
if
progress
is
False
else
self
.
progress
self
.
q
=
q
if
q
is
not
None
else
self
.
q
...
...
setup.py
View file @
38ad0f90
...
...
@@ -24,7 +24,7 @@ test_requirements = requirements + ["coverage", "nose", "nose2", "nose-htmloutpu
setup
(
name
=
'geoarray'
,
version
=
'0.7.1
2
'
,
version
=
'0.7.1
3
'
,
description
=
"Fast Python interface for geodata - either on disk or in memory."
,
long_description
=
readme
+
'
\n\n
'
+
history
,
author
=
"Daniel Scheffler"
,
...
...
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