Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ env:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2

- name: Setup mdBook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: "0.4.42"
mdbook-version: "0.5.2"

- name: Build
run: mdbook build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ env:

jobs:
build:
runs-on: ubuntu-22.04
runs-on: ubuntu-24.04

steps:
- uses: actions/checkout@v2

- name: Setup mdBook
uses: peaceiris/actions-mdbook@v2
with:
mdbook-version: "0.4.42"
mdbook-version: "0.5.2"

- name: Build
run: mdbook build
Expand Down
1 change: 0 additions & 1 deletion book.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
[book]
authors = ["Christian Beilschmidt <[email protected]>"]
language = "en"
multilingual = false
src = "src"
title = "Geo Engine Docs"

Expand Down
9 changes: 3 additions & 6 deletions src/operators/rasterstacker.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,9 @@ All inputs must have the same data type and spatial reference.

## Parameters

| Parameter | Type | Description | Example Value |
| ----------- | ------------- | ----------------------------------------------------------- | -------------------------------------- |
| renameBands | `RenameBands` | Specification of how to rename the bands to avoid conflicts | <pre><code>{ "type": "default" }</pre> |
| Parameter | Type | Description | Example Value |
| ----------- | ------------- | ----------------------------------------------------------- | -------------------------------------- |
| renameBands | `RenameBands` | Specification of how to rename the bands to avoid conflicts | <pre><code>{ "type": "default" }</pre> |
| Parameter | Type | Description | Example Value |
| ----------- | ------------- | ----------------------------------------------------------- | ----------------------- |
| renameBands | `RenameBands` | Specification of how to rename the bands to avoid conflicts | `{ "type": "default" }` |

## Types

Expand Down
12 changes: 6 additions & 6 deletions src/operators/temporalrasteraggregation.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ If we perform a query with an instant like [2021-01-01, 2021-01-01), we will get

## Parameters

| Parameter | Type | Description | Example Value |
| ----------------- | ------------------------------------------------ | -------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
| `aggregation` | [`Aggregation`](#aggregation) | method for aggregating pixels | <pre><code>{<br>&nbsp;&nbsp;"type": "max",<br>&nbsp;&nbsp;"ignoreNoData": false<br>}</code></pre> |
| `window` | [`TimeStep`](/datatypes/timestep.md) | length of time steps | <pre><code>{<br>&nbsp;&nbsp;"granularity": "Months",<br>&nbsp;&nbsp;"step": 1<br>}</code></pre> |
| `windowReference` | [`TimeInstance`](/datatypes/timeinstance.md) | (Optional) anchor point for the aggregation windows. Default value is `1970-01-01T00:00:00Z` | `1970-01-01T00:00:00Z` |
| `outputType` | [`RasterDataType`](/datatypes/rasterdatatype.md) | (Optional) A raster data type for the output. Same as input, if not specified. | <pre><code>U8</code><pre> |
| Parameter | Type | Description | Example Value |
| ----------------- | ------------------------------------------------ | -------------------------------------------------------------------------------------------- | ------------------------------------------------------------- |
| `aggregation` | [`Aggregation`](#aggregation) | method for aggregating pixels | `{`<br>` "type": "max",`<br>` "ignoreNoData": false`<br>`}` |
| `window` | [`TimeStep`](/datatypes/timestep.md) | length of time steps | `{`<br>` "granularity": "Months",`<br>` "step": 1`<br>`}` |
| `windowReference` | [`TimeInstance`](/datatypes/timeinstance.md) | (Optional) anchor point for the aggregation windows. Default value is `1970-01-01T00:00:00Z` | `1970-01-01T00:00:00Z` |
| `outputType` | [`RasterDataType`](/datatypes/rasterdatatype.md) | (Optional) A raster data type for the output. Same as input, if not specified. | `U8` |

## Types

Expand Down
Loading