Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
G
geoarray
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Daniel Scheffler
geoarray
Commits
5f421f37
There was a problem fetching the pipeline summary.
Commit
5f421f37
authored
7 years ago
by
Daniel Scheffler
Browse files
Options
Downloads
Patches
Plain Diff
Fixed bug related to matplotlib backend (issue
#8
). Updated version info.
parent
4dbde980
No related branches found
No related tags found
No related merge requests found
Pipeline
#
Changes
2
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
geoarray/__init__.py
+13
-9
13 additions, 9 deletions
geoarray/__init__.py
setup.py
+5
-5
5 additions, 5 deletions
setup.py
with
18 additions
and
14 deletions
geoarray/__init__.py
+
13
−
9
View file @
5f421f37
# -*- coding: utf-8 -*-
__author__
=
"""
Daniel Scheffler
"""
__email__
=
'
danschef@gfz-potsdam.de
'
__version__
=
'
0.5.9
'
__versionalias__
=
'
v20170823.01
'
import
os
if
'
MPLBACKEND
'
not
in
os
.
environ
:
os
.
environ
[
'
MPLBACKEND
'
]
=
'
Agg
'
from
.baseclasses
import
GeoArray
...
...
@@ -11,8 +10,13 @@ from .masks import BadDataMask
from
.masks
import
NoDataMask
from
.masks
import
CloudMask
__all__
=
[
'
GeoArray
'
,
'
BadDataMask
'
,
'
NoDataMask
'
,
'
CloudMask
'
]
__author__
=
"""
Daniel Scheffler
"""
__email__
=
'
danschef@gfz-potsdam.de
'
__version__
=
'
0.5.10
'
__versionalias__
=
'
v20170830.01
'
__all__
=
[
'
GeoArray
'
,
'
BadDataMask
'
,
'
NoDataMask
'
,
'
CloudMask
'
]
This diff is collapsed.
Click to expand it.
setup.py
+
5
−
5
View file @
5f421f37
...
...
@@ -11,9 +11,9 @@ with open('HISTORY.rst') as history_file:
history
=
history_file
.
read
()
requirements
=
[
'
py_tools_ds>=0.4.2
'
,
'
numpy
'
,
'
matplotlib
'
,
'
six
'
,
'
gdal
'
,
'
shapely
'
,
'
geopandas
'
,
'
pandas
'
,
'
dill
'
,
'
mpld3
'
,
'
geojson
'
,
'
folium
'
,
'
scikit-image
'
#'holoviews', # conda install --yes -c ioam bokeh holoviews=1.8.0 ; \
'
py_tools_ds>=0.4.2
'
,
'
numpy
'
,
'
matplotlib
'
,
'
six
'
,
'
gdal
'
,
'
shapely
'
,
'
geopandas
'
,
'
pandas
'
,
'
dill
'
,
'
mpld3
'
,
'
geojson
'
,
'
folium
'
,
'
scikit-image
'
#
'holoviews', # conda install --yes -c ioam bokeh holoviews=1.8.0 ; \
# git+https://github.com/matplotlib/basemap.git # conda install --yes -c conda-forge basemap
]
...
...
@@ -21,7 +21,7 @@ test_requirements = ["coverage"]
setup
(
name
=
'
geoarray
'
,
version
=
'
0.5.
9
'
,
version
=
'
0.5.
10
'
,
description
=
"
Fast Python interface for geodata - either on disk or in memory.
"
,
long_description
=
readme
+
'
\n\n
'
+
history
,
author
=
"
Daniel Scheffler
"
,
...
...
@@ -57,7 +57,7 @@ try:
import
holoviews
except
ImportError
:
warnings
.
warn
(
'
You need to install holoviews manually (see www.holoviews.org) if you want to use interactive
'
'
plotting. It is not automatically installed.
'
)
# TODO
'
plotting. It is not automatically installed.
'
)
# TODO
# check for basemap
try
:
...
...
This diff is collapsed.
Click to expand it.
Daniel Scheffler
@danschef
mentioned in issue
#8 (closed)
·
7 years ago
mentioned in issue
#8 (closed)
mentioned in issue #8
Toggle commit list
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment