KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
jupytergis-tiler
★ 17
Open GitHub ↗
JupyterGIS - TiTiler integration
Download README (.md)
Explore Similar Repositories
OpenKWS
:
开源自定义唤醒词
lippia-mobile
:
No description available.
CMD
:
No description available.
WebGS
:
webgpu implementation of 3D/4D gaussian viewer
tide
:
Typst IDE
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
jupytergis-tiler
?
Download (.md)
<p align="center" width="100%"> <video src="https://github.com/user-attachments/assets/5c2d669a-ff8c-4a66-97e3-1845220fb819" width="80%" controls></video> </p> > [!IMPORTANT] > > Development of this functionality has moved to > [jupyter-tiler](https://github.com/geojupyter/jupyter-tiler). > Instead of installing this package, we recommend installing > JupyterGIS with the optional "tiler" dependency group, `jupytergis[tiler]`. # jupytergis-tiler A JupyterGIS extension for creating and serving raster layers using your own data. ## Install from PyPI Rasterio currently doesn't ship wheels for Python 3.14, so be sure to pin `python <3.14` for now. ```bash pip install jupytergis-tiler ``` ## Development install Clone or fork this repository and: ```bash pip install . ``` ## Usage First create a `GISDocument` in a cell and display it: ```py doc = GISDocument("my_file.jGIS") doc ``` Say you have a `xarray.DataArray` called `da` with geographical coordinates, you can show it as a raster layer like so: ```py await doc.add_tiler_layer( name="My layer", data_array=da, ) ``` Please look at the notebooks in the `examples` directory.