Skip to content

Commit d4c0468

Browse files
Merge pull request #63 from geo-engine/migrate-0.5
migrate to mdbook 0.5
2 parents a722a7b + faf15ec commit d4c0468

12 files changed

Lines changed: 1561 additions & 1071 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ env:
1313

1414
jobs:
1515
build:
16-
runs-on: ubuntu-22.04
16+
runs-on: ubuntu-24.04
1717

1818
steps:
1919
- uses: actions/checkout@v2
2020

2121
- name: Setup mdBook
2222
uses: peaceiris/actions-mdbook@v2
2323
with:
24-
mdbook-version: "0.4.42"
24+
mdbook-version: "0.5.2"
2525

2626
- name: Build
2727
run: mdbook build

.github/workflows/deploy.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ env:
1111

1212
jobs:
1313
build:
14-
runs-on: ubuntu-22.04
14+
runs-on: ubuntu-24.04
1515

1616
steps:
1717
- uses: actions/checkout@v2
1818

1919
- name: Setup mdBook
2020
uses: peaceiris/actions-mdbook@v2
2121
with:
22-
mdbook-version: "0.4.42"
22+
mdbook-version: "0.5.2"
2323

2424
- name: Build
2525
run: mdbook build

book.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
[book]
22
authors = ["Christian Beilschmidt <christian.beilschmidt@geoengine.de>"]
33
language = "en"
4-
multilingual = false
54
src = "src"
65
title = "Geo Engine Docs"
76

src/operators/rasterstacker.md

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,9 @@ All inputs must have the same data type and spatial reference.
99

1010
## Parameters
1111

12-
| Parameter | Type | Description | Example Value |
13-
| ----------- | ------------- | ----------------------------------------------------------- | -------------------------------------- |
14-
| renameBands | `RenameBands` | Specification of how to rename the bands to avoid conflicts | <pre><code>{ "type": "default" }</pre> |
15-
| Parameter | Type | Description | Example Value |
16-
| ----------- | ------------- | ----------------------------------------------------------- | -------------------------------------- |
17-
| renameBands | `RenameBands` | Specification of how to rename the bands to avoid conflicts | <pre><code>{ "type": "default" }</pre> |
12+
| Parameter | Type | Description | Example Value |
13+
| ----------- | ------------- | ----------------------------------------------------------- | ----------------------- |
14+
| renameBands | `RenameBands` | Specification of how to rename the bands to avoid conflicts | `{ "type": "default" }` |
1815

1916
## Types
2017

src/operators/temporalrasteraggregation.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ If we perform a query with an instant like [2021-01-01, 2021-01-01), we will get
1717

1818
## Parameters
1919

20-
| Parameter | Type | Description | Example Value |
21-
| ----------------- | ------------------------------------------------ | -------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------- |
22-
| `aggregation` | [`Aggregation`](#aggregation) | method for aggregating pixels | <pre><code>{<br>&nbsp;&nbsp;"type": "max",<br>&nbsp;&nbsp;"ignoreNoData": false<br>}</code></pre> |
23-
| `window` | [`TimeStep`](/datatypes/timestep.md) | length of time steps | <pre><code>{<br>&nbsp;&nbsp;"granularity": "Months",<br>&nbsp;&nbsp;"step": 1<br>}</code></pre> |
24-
| `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` |
25-
| `outputType` | [`RasterDataType`](/datatypes/rasterdatatype.md) | (Optional) A raster data type for the output. Same as input, if not specified. | <pre><code>U8</code><pre> |
20+
| Parameter | Type | Description | Example Value |
21+
| ----------------- | ------------------------------------------------ | -------------------------------------------------------------------------------------------- | ------------------------------------------------------------- |
22+
| `aggregation` | [`Aggregation`](#aggregation) | method for aggregating pixels | `{`<br>` "type": "max",`<br>` "ignoreNoData": false`<br>`}` |
23+
| `window` | [`TimeStep`](/datatypes/timestep.md) | length of time steps | `{`<br>` "granularity": "Months",`<br>` "step": 1`<br>`}` |
24+
| `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` |
25+
| `outputType` | [`RasterDataType`](/datatypes/rasterdatatype.md) | (Optional) A raster data type for the output. Same as input, if not specified. | `U8` |
2626

2727
## Types
2828

0 commit comments

Comments
 (0)