Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
geoarray
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
6
Issues
6
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Daniel Scheffler
geoarray
Commits
3462bf4a
Commit
3462bf4a
authored
May 29, 2017
by
Daniel Scheffler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a bug in GeoArray.show()
updated __version__ and __versionalias__
parent
518269de
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
7 deletions
+7
-7
docs/index.rst
docs/index.rst
+2
-2
geoarray/__init__.py
geoarray/__init__.py
+2
-2
geoarray/baseclasses.py
geoarray/baseclasses.py
+2
-2
setup.py
setup.py
+1
-1
No files found.
docs/index.rst
View file @
3462bf4a
Welcome to GeoArray's documentation!
====================================
==
====================================
Contents:
.. toctree::
:maxdepth:
2
:maxdepth:
4
readme
installation
...
...
geoarray/__init__.py
View file @
3462bf4a
...
...
@@ -2,8 +2,8 @@
__author__
=
"""Daniel Scheffler"""
__email__
=
'danschef@gfz-potsdam.de'
__version__
=
'0.2.
1
'
__versionalias__
=
'v20170529.0
2
'
__version__
=
'0.2.
2
'
__versionalias__
=
'v20170529.0
3
'
from
.baseclasses
import
GeoArray
...
...
geoarray/baseclasses.py
View file @
3462bf4a
...
...
@@ -873,8 +873,8 @@ class GeoArray(object):
image2plot
,
gt
,
prj
=
self
.
get_mapPos
(
boundsMap
,
boundsMapPrj
,
band2get
=
band
,
fillVal
=
nodataVal
if
nodataVal
is
not
None
else
self
.
nodata
)
else
:
cS
,
cE
=
xlim
if
isinstance
(
xlim
,
(
tuple
,
list
))
else
(
0
,
self
.
columns
-
1
)
rS
,
rE
=
ylim
if
isinstance
(
ylim
,
(
tuple
,
list
))
else
(
0
,
self
.
rows
-
1
)
cS
,
cE
=
xlim
if
isinstance
(
xlim
,
(
tuple
,
list
))
else
(
0
,
self
.
columns
)
rS
,
rE
=
ylim
if
isinstance
(
ylim
,
(
tuple
,
list
))
else
(
0
,
self
.
rows
)
image2plot
=
self
[
rS
:
rE
,
cS
:
cE
,
band
]
if
band
is
not
None
else
self
[
rS
:
rE
,
cS
:
cE
]
gt
,
prj
=
self
.
geotransform
,
self
.
projection
...
...
setup.py
View file @
3462bf4a
...
...
@@ -20,7 +20,7 @@ test_requirements = [
setup
(
name
=
'geoarray'
,
version
=
'0.2.
1
'
,
version
=
'0.2.
2
'
,
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