-
Notifications
You must be signed in to change notification settings - Fork 42
Implement a JGIS workflow to streamline the "QGIS bounce" pattern #513
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
Comments
So far, looks like so: jgis_bounce_demo2_cropped.mp4Some problems:
|
This sounds valuable for many use cases. Especially thinking forward to #569. This has been discussed since 2018, but seems to have died down in 2021. Perhaps we can revive the discussion and perhaps implement a system for opening new UI elements from JS/Python. |
Sidecar has had this feature since just after those threads died down. Requested they be closed as resolved. I was able to use it PR #340 to open JGIS in a full-fledged JupyterLab "window" ( |
A common pattern for geospatial practitioners is to check results at each step of an analysis using QGIS:
This should be achievable with JGIS instead with significantly fewer steps. Our first iteration might look like:
from jupytergis_lab import geo_debug; geo_debug("my_data.tif")
We could do even better eventually, making this process (close to?) frictionless:
from jupytergis_lab import geo_debug; geo_debug(my_geodataframe)
(ormy_data_array
, or ...)The text was updated successfully, but these errors were encountered: