Skip to content

Commit 4d14eb5

Browse files
committed
Fix client side processing
1 parent 062adc8 commit 4d14eb5

File tree

2 files changed

+10
-10
lines changed

2 files changed

+10
-10
lines changed

.vuepress/config.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ module.exports = {
1414
nav: [
1515
{ text: 'Datasets', link: '/data-collections/' },
1616
{ text: 'Get Started', items: [
17+
{ text: 'Free Trial Registration', link: '/join/free_trial.html' },
1718
{ text: 'Data Cubes', link: 'https://openeo.org/documentation/1.0/datacubes.html' },
1819
{ text: 'Client Libraries', items: [
1920
{ text: 'JavaScript', link: '/getting-started/javascript/' },
@@ -24,8 +25,8 @@ module.exports = {
2425
{ text: 'JupyterLab (Python)', link: '/getting-started/jupyterlab/' },
2526
{ text: 'Editor', link: '/getting-started/editor/' }
2627
] },
27-
{ text: 'Free Trial Registration', link: '/join/free_trial.html' },
2828
{ text: 'Cookbook', link: 'https://openeo.org/documentation/1.0/cookbook/' },
29+
{ text: 'Client-Side Processing (Python)', link: '/getting-started/client-side-processing/' },
2930
] },
3031
{ text: 'Clients', items: [
3132
{ text: 'JavaScript', link: 'https://open-eo.github.io/openeo-js-client/latest/' },

getting-started/client side processing/index.md getting-started/client-side-processing/index.md

+8-9
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,8 @@ It relies on the projects [openeo-pg-parser-networkx](https://github.com/Open-EO
77

88
## Installation
99

10-
::: danger Important
11-
10+
::: warning Important
1211
This feature requires ``Python>=3.9``.
13-
1412
:::
1513

1614
The openEO Python client library can easily be installed with a tool like `pip`, for example:
@@ -26,10 +24,9 @@ Every openEO process graph relies on data which is typically provided by a cloud
2624
The client-side processing adds the possibility to read and use local netCDFs, geoTIFFs, ZARR files, and remote STAC Collections or Items for your experiments.
2725

2826
### STAC Collections and Items
29-
::: danger Important
3027

28+
::: warning Important
3129
The provided examples using STAC rely on third party STAC Catalogs, we can't guarantee that the urls will remain valid.
32-
3330
:::
3431

3532
With the `load_stac` process it's possible to load and use data provided by remote or local STAC Collections or Items.
@@ -105,9 +102,10 @@ local_conn.list_collections()
105102
This code will parse the metadata content of each netCDF, geoTIFF or ZARR file in the provided folders and return a JSON object containing the STAC representation of the metadata.
106103
If this code is run in a Jupyter Notebook, the metadata will be rendered nicely.
107104

108-
.. tip::
109-
The code expects local files to have a similar structure to the sample files provided [here](https://github.com/Open-EO/openeo-localprocessing-data.git).
110-
If the code can not handle you special netCDF, you can still modify the function that reads the metadata from it [here](https://github.com/Open-EO/openeo-python-client/blob/master/openeo/local/collections.py) and the function that reads the data [here](https://github.com/Open-EO/openeo-python-client/blob/master/openeo/local/processing.py).
105+
::: tip
106+
The code expects local files to have a similar structure to the sample files provided [here](https://github.com/Open-EO/openeo-localprocessing-data.git).
107+
If the code can not handle you special netCDF, you can still modify the function that reads the metadata from it [here](https://github.com/Open-EO/openeo-python-client/blob/master/openeo/local/collections.py) and the function that reads the data [here](https://github.com/Open-EO/openeo-python-client/blob/master/openeo/local/processing.py).
108+
:::
111109

112110
### Local Processing
113111

@@ -179,6 +177,7 @@ result_ndvi = ndvi_median.execute()
179177
```
180178

181179
## Client-Side Processing Example Notebooks
180+
182181
* [From the openEO Python Client repo](https://github.com/Open-EO/openeo-python-client/tree/master/examples/notebooks/Client_Side_Processing)
183182
* [From the Cubes and Clouds repo](https://github.com/EO-College/cubes-and-clouds/blob/main/lectures/3.1_data_processing/exercises/_alternatives/31_data_processing_stac.ipynb)
184183

@@ -191,4 +190,4 @@ Additional information and resources about the openEO Python Client Library:
191190
* [Example Python scripts](https://github.com/Open-EO/openeo-python-client/tree/master/examples)
192191
* [Example Jupyter Notebooks](https://github.com/Open-EO/openeo-python-client/tree/master/examples/notebooks)
193192
* [Repository on GitHub](https://github.com/Open-EO/openeo-python-client)
194-
* [Run openEO processes in a Python Shiny App](./shiny.md)
193+
* [Run openEO processes in a Python Shiny App](../python/shiny.md)

0 commit comments

Comments
 (0)