Add note about live server to docs

This commit is contained in:
Tom 2025-04-24 10:54:11 +01:00
parent fff00ca6f1
commit 79e9f83c8c
2 changed files with 9 additions and 1 deletions

View File

@ -33,3 +33,7 @@ source_suffix = {
html_theme = "sphinx_rtd_theme"
html_static_path = ["_static"]
myst_enable_extensions = [
"attrs_inline",
]

View File

@ -8,7 +8,7 @@ jupytext:
---
# Quickstart
First install qubed with `pip install qubed`. Now, let's dive in with a real world dataset from the [Climate DT](https://destine.ecmwf.int/climate-change-adaptation-digital-twin-climate-dt/). We'll pull a prebuild qube from github and render it in it's default HTML representation.
First install qubed with `pip install qubed`. Now, let's dive in with a real world dataset from the [Climate DT](https://destine.ecmwf.int/climate-change-adaptation-digital-twin-climate-dt/). We'll pull a prebuilt qube from github and render it in it's default HTML representation.
```{code-cell} python3
import requests
@ -19,6 +19,10 @@ climate_dt.html(depth=1)
Click the arrows to expand and drill down deeper into the data.
```{note}
There is currently a simple Qube web browser hosted [here](https://qubed.lumi.apps.dte.destination-earth.eu/). Browse that and copy the 'Example Qube Code' to download a Qube representing the selection at that point. You'll get something like `Qube.from_json(requests.get("https://qubed.lumi.apps.dte.destination-earth.eu/api/v1/select/climate-dt/?").json())`{l=python}
```
Fundamentally a Qube represents a set identifiers which are a set of key value pairs, here's the one leaf in the Climate DT dataset:
```{code-cell} python3