Skip to content

Commit

Permalink
Fix code blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mohr authored Oct 15, 2024
1 parent e7ba686 commit 4bf0094
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions meta/implementation.md
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ For the data types boolean, numbers, strings and null it is recommended to log t

It is recommended to summarize arrays as follows:

```js
```json5
{
"data": [3,1,6,4,8], // Return a reasonable excerpt of the data, e.g. the first 5 or 10 elements
"length": 10, // Return the length of the array, this is important to determine whether the data above is complete or an excerpt
Expand All @@ -179,7 +179,7 @@ It is recommended to return them summarized in a structure compliant to the [STA
If reasonsable, it gives a valuable benefit for users to provide all dimension labels (e.g. individual timestamps for the temporal dimension) instead of values ranges.
The top-level object and/or each dimension can be enhanced with additional statstics if possible, ideally use the corresponsing openEO process names as keys.

```js
```json5
{
"cube:dimensions": {
"x": {
Expand Down Expand Up @@ -252,7 +252,7 @@ OGC API - Processes and OGC EO Application Packages (AP) can generally be utiliz

Example process node:

```json
```json5
{
"process_id": "run_ogcapi",
"arguments": {
Expand All @@ -272,7 +272,7 @@ OGC API - Processes and OGC EO Application Packages (AP) can generally be utiliz

Example process node:

```json
```json5
{
"process_id": "run_udf",
"arguments": {
Expand Down

0 comments on commit 4bf0094

Please sign in to comment.