Skip to content

Commit 88134ee

Browse files
Fix tile URL (#44)
* Fix tile URL * Binder install from GitHub * Use JupyterLab in Binder * Add jupyterlab=3 to environment.yml * Use ipyurl * Pin rasterio=1.2.6 in Binder, add ipyurl dependency * Add ipyurl to binder env * Update with ipyurl v0.1.2 * Remove debug_output
1 parent 439748c commit 88134ee

File tree

5 files changed

+277
-291
lines changed

5 files changed

+277
-291
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/davidbrochart/xarray_leaflet/master?filepath=examples%2Fintroduction.ipynb)
1+
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/davidbrochart/xarray_leaflet/master?urlpath=lab%2Ftree%2Fexamples%2Fintroduction.ipynb)
22

33
# xarray-leaflet: an xarray extension for tiled map plotting
44

binder/environment.yml

+5
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,9 @@ dependencies:
66
- tqdm
77
- scipy
88
- dask
9+
- rasterio=1.2.6
10+
- jupyterlab=3
911
- xarray_leaflet
12+
- pip
13+
- pip:
14+
- ipyurl=0.1.2

examples/introduction.ipynb

+2-2
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@
232232
],
233233
"metadata": {
234234
"kernelspec": {
235-
"display_name": "Python 3",
235+
"display_name": "Python 3 (ipykernel)",
236236
"language": "python",
237237
"name": "python3"
238238
},
@@ -246,7 +246,7 @@
246246
"name": "python",
247247
"nbconvert_exporter": "python",
248248
"pygments_lexer": "ipython3",
249-
"version": "3.8.6"
249+
"version": "3.9.6"
250250
}
251251
},
252252
"nbformat": 4,

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,8 @@ def get_data_files():
2121
'matplotlib>=3',
2222
'affine>=2',
2323
'mercantile>=1',
24-
'ipyspin>=0.1.1'
24+
'ipyspin>=0.1.1',
25+
'ipyurl>=0.1.2',
2526
]
2627

2728
setup_requirements = [ ]

0 commit comments

Comments
 (0)