Skip to content

Commit 201423b

Browse files
committed
Merge pull request #99 from dopplershift/cartopy-example
Add Cartopy example notebook
2 parents 62e32a7 + 215c027 commit 201423b

File tree

3 files changed

+326
-1
lines changed

3 files changed

+326
-1
lines changed

environment.yml

+1
Original file line numberDiff line numberDiff line change
@@ -19,3 +19,4 @@ dependencies:
1919
- pep8-naming
2020
- matplotlib
2121
- xarray
22+
- cartopy

examples/notebooks/NCSS_Cartopy_Example.ipynb

+321
Large diffs are not rendered by default.

setup.py

+4-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,10 @@ def run(self):
7575
'test': ['pytest', 'pytest-runner', 'netCDF4>=1.1.0',
7676
'vcrpy~=1.5,!=1.7.0,!=1.7.1,!=1.7.2,!=1.7.3', 'xarray>=0.6'],
7777
'doc': ['sphinx>=1.3', 'nbconvert>=4.0', 'IPython>=4.0'],
78-
'examples': 'matplotlib>=1.3'
78+
# Need quite a bit of cartopy's "optional" dependencies
79+
# Need to pin shapely until at least cartopy 0.13.1 is on pypi
80+
'examples': ['matplotlib>=1.3', 'cartopy>=0.13', 'pillow', 'scipy',
81+
'shapely<=1.5.12']
7982
},
8083

8184
download_url='https://github.com/Unidata/siphon/archive/v%s.tar.gz' % ver,)

0 commit comments

Comments
 (0)