30 |
31 | ## Step 2: E-mail verification
32 |
33 | Upon registration, you will be prompted to verify your email address by receiving a verification email. To complete the process, simply click on the "Verify email address" link when you open the email.
34 |
35 | 
36 |
37 | After successfully verifying your email, your registration process is complete. You can now log in using your credentials (providing Email and Password).
38 |
39 | If you have an issue with registering or you want to deregister, please [contact us](mailto://help-login@dataspace.copernicus.eu?Subject=Subject%20Text&Body=Your%20comments).
40 |
41 |
42 |
43 |
51 |
--------------------------------------------------------------------------------
/Roadmap.qmd:
--------------------------------------------------------------------------------
1 | ---
2 | title: "Roadmap"
3 | aliases:
4 | - /Roadmap/APITable.qmd
5 | - /Roadmap/APITable.html
6 | - /Roadmap/AppTable.qmd
7 | - /Roadmap/AppTable.html
8 | - /Roadmap/DataTable.qmd
9 | - /Roadmap/DataTable.html
10 | ---
11 |
12 | The Copernicus Data Space Ecosystem is continually advancing, with its roadmap frequently revised to incorporate new improvements.
13 | Discover additional data offerings and upcoming services in the near future here.
14 |
15 |
16 | ## Upcoming improvements
17 |
18 | 
19 |
--------------------------------------------------------------------------------
/Support.md:
--------------------------------------------------------------------------------
1 | # Support
2 |
3 | If you don't find answer to your questions in the documentation portal, this page describes how to ask for support.
4 |
5 | ## Prerequisites
6 |
7 | Important to know is that only users with a Copernicus Data Space Ecosystem account can ask for support.
8 | If you don't have one yet, you can register [here](https://identity.dataspace.copernicus.eu/auth/realms/CDSE/protocol/openid-connect/auth?client_id=cdse-public&redirect_uri=https%3A%2F%2Fdataspace.copernicus.eu&response_type=code&scope=openid){target="_blank"}.
9 | If you have an issue with registering or you want to deregister, please [contact us](mailto://help-login@dataspace.copernicus.eu?Subject=Subject%20Text&Body=Your%20comments) directly.
10 |
11 | ## Step 1: Navigate to the Help center
12 |
13 | Navigate to the following [website](https://helpcenter.dataspace.copernicus.eu/hc/en-gb).
14 |
15 | In case you're not logged in, click on LOGIN.
16 |
17 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 | ```
--------------------------------------------------------------------------------
/notebook_filter.py:
--------------------------------------------------------------------------------
1 | import sys
2 | import nbformat
3 |
4 | # read notebook from stdin
5 | nb = nbformat.reads(sys.stdin.read(), as_version=4)
6 |
7 | # prepend a comment to the source of each cell
8 | for index, cell in enumerate(nb.cells):
9 | if cell.cell_type == 'code':
10 | cell.source = cell.source.replace("openeo.cloud","openeofed.dataspace.copernicus.eu")
11 |
12 | # write notebook to stdout
13 | nbformat.write(nb, sys.stdout)
--------------------------------------------------------------------------------
/requirements.txt:
--------------------------------------------------------------------------------
1 | pandas
2 | openeo
3 | tabulate
4 | bs4
5 | pandas
--------------------------------------------------------------------------------
/test_files/execute-results/html.json:
--------------------------------------------------------------------------------
1 | {
2 | "hash": "69c7e1900156ba49a0d66d0bb73f2a59",
3 | "result": {
4 | "markdown": "::: {.cell execution_count=1}\n``` {.python .cell-code}\nimport json\n\nmeta = None\nwith open(\"./data/collections.json\") as f:\n meta = json.load(f)[\"collections\"]\n\nfrom IPython.display import display, Markdown, Latex, HTML\n# meta = [ c for c in meta if mission in c[\"id\"] ]\n\n\nif meta[0]['links'][7]['title'] == \"Website describing the collection\":\n link = meta[0]['links'][7]['href']\n print(link)\nelse:\n print(\"sorry no link available\")\n \ndisplay(HTML(f\"\"\"You can find a detailed description about the collection in this
link\"\"\"))\n```\n\n::: {.cell-output .cell-output-stdout}\n```\nhttps://collections.eurodatacube.com/sentinel-2-l2a\n```\n:::\n\n::: {.cell-output .cell-output-display}\n```{=html}\nYou can find a detailed description about the collection in this
link\n```\n:::\n:::\n\n\n",
5 | "supporting": [
6 | "test_files"
7 | ],
8 | "filters": [],
9 | "includes": {
10 | "include-in-header": [
11 | "\n\n\n"
12 | ]
13 | }
14 | }
15 | }
--------------------------------------------------------------------------------