From fea09d7c250e57c511895fbf4914eff7658a0d64 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20=C2=A9?= Date: Wed, 25 Oct 2023 10:13:49 +0100 Subject: [PATCH 1/2] fix missing sections --- tutorial/_toc.yml | 2 +- tutorial/part1/motivation.md | 1 + tutorial/part1/overview.md | 1 + tutorial/part2/placeholder.md | 1 + tutorial/part3/advanced_udf.ipynb | 34 ++++++++++++++++++++++++++ tutorial/part3/advanced_ufunc.ipynb | 34 ++++++++++++++++++++++++++ tutorial/part3/advanced_workflow.ipynb | 34 ++++++++++++++++++++++++++ 7 files changed, 106 insertions(+), 1 deletion(-) create mode 100644 tutorial/part3/advanced_udf.ipynb create mode 100644 tutorial/part3/advanced_ufunc.ipynb create mode 100644 tutorial/part3/advanced_workflow.ipynb diff --git a/tutorial/_toc.yml b/tutorial/_toc.yml index a0ef5fc..995aa34 100644 --- a/tutorial/_toc.yml +++ b/tutorial/_toc.yml @@ -38,7 +38,7 @@ parts: title: The Easy-peasy life with OpenEO - file: part3/data_exploitability_pangeo title: How to exploit data on Pangeo - - file: part/chunking_introduction + - file: part3/chunking_introduction title: Data and pre-processing general knowledge - file: part3/scaling_dask title: Scaling with Dask diff --git a/tutorial/part1/motivation.md b/tutorial/part1/motivation.md index e69de29..81c320b 100644 --- a/tutorial/part1/motivation.md +++ b/tutorial/part1/motivation.md @@ -0,0 +1 @@ +# Introduction and Motivation \ No newline at end of file diff --git a/tutorial/part1/overview.md b/tutorial/part1/overview.md index e69de29..f6971da 100644 --- a/tutorial/part1/overview.md +++ b/tutorial/part1/overview.md @@ -0,0 +1 @@ +# Overview of the Pangeo ecosystem \ No newline at end of file diff --git a/tutorial/part2/placeholder.md b/tutorial/part2/placeholder.md index e69de29..569a136 100644 --- a/tutorial/part2/placeholder.md +++ b/tutorial/part2/placeholder.md @@ -0,0 +1 @@ +# Agenda \ No newline at end of file diff --git a/tutorial/part3/advanced_udf.ipynb b/tutorial/part3/advanced_udf.ipynb new file mode 100644 index 0000000..0813eb4 --- /dev/null +++ b/tutorial/part3/advanced_udf.ipynb @@ -0,0 +1,34 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# OpenEO - User Defined Functions" + ], + "metadata": { + "collapsed": false + } + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/tutorial/part3/advanced_ufunc.ipynb b/tutorial/part3/advanced_ufunc.ipynb new file mode 100644 index 0000000..11f69c9 --- /dev/null +++ b/tutorial/part3/advanced_ufunc.ipynb @@ -0,0 +1,34 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# OpenEO - User Functions" + ], + "metadata": { + "collapsed": false + } + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} diff --git a/tutorial/part3/advanced_workflow.ipynb b/tutorial/part3/advanced_workflow.ipynb new file mode 100644 index 0000000..dbb4b20 --- /dev/null +++ b/tutorial/part3/advanced_workflow.ipynb @@ -0,0 +1,34 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "source": [ + "# OpenEO - Advanced Workflows" + ], + "metadata": { + "collapsed": false + } + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 2 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython2", + "version": "2.7.6" + } + }, + "nbformat": 4, + "nbformat_minor": 0 +} From 03b77a4041fb3c7803aa3e4e4341ddc66a390f41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Alejandro=20=C2=A9?= Date: Wed, 25 Oct 2023 10:29:13 +0100 Subject: [PATCH 2/2] fix typo to the workflow notebook file --- tutorial/_toc.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutorial/_toc.yml b/tutorial/_toc.yml index 995aa34..e8d6cea 100644 --- a/tutorial/_toc.yml +++ b/tutorial/_toc.yml @@ -39,7 +39,7 @@ parts: - file: part3/data_exploitability_pangeo title: How to exploit data on Pangeo - file: part3/chunking_introduction - title: Data and pre-processing general knowledge + title: Data and preprocessing general knowledge - file: part3/scaling_dask title: Scaling with Dask - file: part3/scaling_openEO @@ -48,7 +48,7 @@ parts: title: Advanced OpenEO (UDF) - file: part3/advanced_ufunc title: Advanced OpenEO (Ufunc) - - file: part3/advanced_worflow + - file: part3/advanced_workflow title: Advanced OpenEO (Workflow) - caption: Beyond the workshop