-
Notifications
You must be signed in to change notification settings - Fork 64
Create new top-level "overview" section in docs, note lack of collab support in JLite #921
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
mfisher87
merged 16 commits into
geojupyter:main
from
mfisher87:docs-overview-and-reorg
Oct 30, 2025
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
4de650a
Add a documentation "watched" build script (Linux only)
mfisher87 8453242
Extract long-form overview content from frontpage
mfisher87 e650ee8
Link to team compass in contributor guide
mfisher87 a22aa48
Move features descriptions into overview section
mfisher87 ac06985
Move content on how to collaborate into user guide how-to
mfisher87 163a15e
Offset TOC contents
mfisher87 afb2bed
Add "What is/not JupyterGIS" page
mfisher87 4d6f1a8
Lint :bell:
mfisher87 d0a45bc
Lint :bell:
mfisher87 a0b8941
Replace absolute links with relative links :weary:
mfisher87 24231bf
Fixup incorrect link
mfisher87 841c6fb
Replace web link with internal reference
mfisher87 f9765ba
Add link to list of 2i2c hubs
mfisher87 3c8664a
Update Venn diagram and description
mfisher87 1fb99ad
Mention collaboration in Python API
mfisher87 91c3bb3
Note lack of support for collab in JLite
mfisher87 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,23 @@ | ||
| #!/usr/bin/env bash | ||
| # NOTE: Requires `inotify-tools`. e.g. `apt install inotify-tools`. | ||
| # TODO: MacOS support? | ||
| set -euo pipefail | ||
|
|
||
| THIS_DIR="$( cd "$(dirname "$0")"; pwd -P )" | ||
| cd "${THIS_DIR}" | ||
| HTML_PATH="./_build/html/index.html" | ||
|
|
||
| ${THIS_DIR}/clean.sh | ||
|
|
||
| set +e | ||
| ${THIS_DIR}/build.sh | ||
| xdg-open "${HTML_PATH}" | ||
| set -e | ||
|
|
||
| while inotifywait -e delete -e create -e close_write -r ${THIS_DIR}; do | ||
| ${THIS_DIR}/clean.sh | ||
|
|
||
| set +e | ||
| ${THIS_DIR}/build.sh | ||
| set -e | ||
| done | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| #!/usr/bin/env bash | ||
| set -euo pipefail | ||
|
|
||
| THIS_DIR="$( cd "$(dirname "$0")"; pwd -P )" | ||
| rm -rf "${THIS_DIR}/_build" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| (collab)= | ||
|
|
||
| # Collaborative Features | ||
|
|
||
| One of the standout features of JupyterGIS is its shared editing functionality, which **seamlessly connects users across different interfaces within the JupyterGIS ecosystem**. Whether collaborators are using the JupyterLab GIS extension, or working with the Python API in a Notebook, **any changes made to a shared document are instantly reflected for all users**. | ||
mfisher87 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| For more details, please read our how-to document: [](#how-to-collab). | ||
|
|
||
| :::{important} | ||
| Note that currently, real-time collaboration is not supported in [JupyterLite](https://jupytergis.readthedocs.io/en/latest/lite/lab/index.html). | ||
| ::: | ||
File renamed without changes.
File renamed without changes.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,36 @@ | ||
| # Overview | ||
|
|
||
| ## 🤝 Real-time collaboration | ||
|
|
||
| JupyterGIS is designed to allow multiple people to work on the same geospatial project | ||
| simultaneously, facilitating discussion and collaboration around map layers, spatial | ||
| analyses, and other GIS data being developed. | ||
|
|
||
| Users can edit, visualize, and analyze spatial data together in real-time, share map | ||
| layers, and annotate directly within the JupyterLab environment, fostering efficient | ||
| teamwork on GIS projects. | ||
|
|
||
| ## 🔄 QGIS project file support | ||
|
|
||
| JupyterGIS provides basic support for [QGIS](https://www.qgis.org) project files, allowing users to import and export | ||
| projects seamlessly between QGIS and JupyterLab. | ||
| This compatibility preserves layer styles, data sources, and project settings, enabling smooth transitions between GIS work | ||
| in QGIS and collaborative, cloud-based work in JupyterLab. | ||
|
|
||
| ## 🐍 Python integration | ||
|
|
||
| Python users can further extend JupyterGIS workflows by integrating with Python geospatial libraries, such as GeoPandas, Xarray | ||
| and Rasterio, to perform custom analyses and automate processes. | ||
| Together, these features make JupyterGIS a powerful tool for | ||
| both collaborative mapping and in-depth geospatial analysis. | ||
|
|
||
| ## ✨ And more... | ||
|
|
||
| ```{toctree} | ||
| :titlesonly: | ||
| :maxdepth: 2 | ||
| :glob: | ||
|
|
||
| */index | ||
| * | ||
| ``` |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| # What is JupyterGIS? What is it _not_? | ||
|
|
||
| ## What is JupyterGIS? | ||
|
|
||
| ### A reimagination of traditional GIS paradigms | ||
|
|
||
| JupyterGIS is exploring new territory at the intersection of desktop GIS and | ||
| cloud-native geospatial. | ||
| Our goal is to bring modern, desktop-like GIS workflows to the cloud, meeting | ||
| researchers where they already work: JupyterLab. | ||
|
|
||
| Pre-existing desktop GIS tools like the legendary [QGIS](https://qgis.org) were | ||
| conceived in a different era. | ||
| Geospatial is a fast-moving domain and today, new opportunities exist to make GIS | ||
| workflows less stressful and more joyful, and it's our goal to take advantage of those | ||
| opportunities by rethinking what GIS can be. | ||
| For example, JupyterGIS is designed from the ground up with real-time collaboration and | ||
| integration with Jupyter Notebooks in mind. | ||
|
|
||
| ## What is JupyterGIS _not_? | ||
|
|
||
| ### A reimplementation of traditional GIS paradigms | ||
|
|
||
| ```{figure} ./jupytergis-venn-diagram.svg | ||
mfisher87 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| :alt: A Venn diagram of our vision of JupyterGIS' relationship to Jupyter Notebooks. The overlapping section between the two reads "Data analysis" and has an orange background, to indicate that this is territory that is already served well by Jupyter Notebooks. The JupyterGIS section contains two regions -- the "Exploration/viz layer" region which contains elements "share", "search", "discover", "draw/calculate AOIs", "identify patterns", "link w/ non-geo data", "validate"; and the "Utility layer" region contains elements "programmatic viz", "assist w/ coding", "transfer AOIs", "access", and "update map when data changes". The "Utility layer" sits between the "Exploration/viz layer" region and the "Data analysis" overlap region. An orange two-sided arrow connects the "Data analysis layer" and the "Exploration/viz layer" via the "Utility layer". | ||
|
|
||
| A Venn diagram of our vision of JupyterGIS' relationship to Jupyter Notebooks. | ||
| ``` | ||
|
|
||
| As JupyterGIS is built for integration with Jupyter Notebooks, it's important to | ||
| consider how the traditional desktop GIS paradigm might conflict with that integration. | ||
|
|
||
| For example, traditional desktop GIS tools offer "processing" or "geoprocessing" tools | ||
| which can be pipelined to produce unique analyses. | ||
| For many practitioners that we've interviewed, the Jupyter Notebook ecosystem and the | ||
| Scientific Python ecosystem serve that data analysis need very well. | ||
| As the _data analysis_ part of their workflow is where their expertise lies, these | ||
| geospatial researchers find integration of visualization into their workflow to be a | ||
| much larger challenge, and this is often a reason for them to leave their Notebook | ||
| environment and open up QGIS. | ||
| While QGIS serves this need very well, the friction and mental context switching | ||
mfisher87 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| introduced by working in two disjoint applications presents a definite challenge. | ||
|
|
||
| With these lessons in mind, we feel that our primary focus on JupyterGIS should _not_ be | ||
| on reimplimenting "geoprocessing" toolboxes, and that we should instead focus on utility | ||
mfisher87 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| functionality that **supports and streamlines** analysis done in a Notebook environment. | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| # How-tos | ||
|
|
||
| ```{toctree} | ||
| :maxdepth: 1 | ||
| :glob: | ||
|
|
||
| * | ||
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -17,7 +17,7 @@ JupyterGIS offers: | |
| :maxdepth: 2 | ||
|
|
||
| install | ||
| how-tos/index | ||
| tutorials/index | ||
| features/index | ||
| python_api | ||
| ``` | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.