Skip to content

Commit

Permalink
fix validation
Browse files Browse the repository at this point in the history
  • Loading branch information
lkstrp committed Feb 21, 2025
1 parent 0c7a363 commit 337bab1
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions config/config.schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -176,13 +176,13 @@ properties:
start:
title: Start Date
description: Left bound of date range (YYYY-MM-DD).
examples: 2025-01-01
examples: [2025-01-01]
type: string
format: date-time
end:
title: End Date
description: Right bound of date range (YYYY-MM-DD).
examples: 2025-12-31
examples: [2025-12-31]
type: string
format: date-time
inclusive:
Expand Down Expand Up @@ -263,7 +263,7 @@ properties:
osm-prebuilt-version:
description: "Choose the version of the prebuilt OSM network."
type: number
examples: 0.6
examples: [0.6]

gaslimit_enable:
description: >
Expand Down Expand Up @@ -529,13 +529,13 @@ properties:
Grid resolution for longitudes. Larger then 0.25.
type: number
minimum: 0
examples: 0.25
examples: [0.25]
dy:
description: >
Grid resolution for latitudes. Larger then 0.25.
type: number
minimum: 0
examples: 0.25
examples: [0.25]
time:
description: >
Time span to download weather data for. If not defined, it defaults to the time interval spanned by the snapshots. Please choose interval within 1979 and 2018 as valid pandas date time strings.
Expand All @@ -557,7 +557,7 @@ properties:
cutout:
description: Specifies the directory where the relevant weather data ist stored. Should be listed in the configuration ``atlite.cutouts``. You can also reference an existing folder in the directory ``cutouts``. Source module must be ERA5.
type: string
examples: europe-2013-sarah3-era5
examples: [europe-2013-sarah3-era5]

resource:
type: object
Expand Down Expand Up @@ -641,7 +641,7 @@ properties:
cutout:
description: Specifies the directory where the relevant weather data ist stored. Should be listed in the configuration ``atlite.cutouts``. You can also reference an existing folder in the directory ``cutouts``. Source module must be ERA5.
type: string
examples: europe-2013-sarah3-era5
examples: [europe-2013-sarah3-era5]

carriers:
description: Specifies the types of hydro power plants to build per-unit availability time series for. 'ror' stands for run-of-river plants, 'PHS' represents pumped-hydro storage, and 'hydro' stands for hydroelectric dams.
Expand Down Expand Up @@ -777,7 +777,7 @@ properties:
cutout:
description: Specifies the directory where the relevant weather data ist stored. Should be listed in the configuration ``atlite.cutouts``. You can also reference an existing folder in the directory ``cutouts``. Source module must be ERA5.
type: string
examples: europe-2013-sarah3-era5
examples: [europe-2013-sarah3-era5]
correction_factor:
description: Factor to compensate for overestimation of wind speeds in hourly averaged wind data.
type: number
Expand Down Expand Up @@ -826,7 +826,7 @@ definitions:
cutout:
description: Specifies the directory where the relevant weather data ist stored. Should be listed in the configuration ``atlite.cutouts``. You can also reference an existing folder in the directory ``cutouts``. Source module must be ERA5.
type: string
examples: europe-2013-sarah3-era5
examples: [europe-2013-sarah3-era5]

resource:
type: object
Expand Down Expand Up @@ -905,7 +905,7 @@ definitions:
cutout:
description: Specifies the directory where the relevant weather data ist stored. Should be listed in the configuration ``atlite.cutouts``. You can also reference an existing folder in the directory ``cutouts``. Source module must be ERA5.
type: string
examples: europe-2013-sarah3-era5
examples: [europe-2013-sarah3-era5]

resource:
type: object
Expand Down

0 comments on commit 337bab1

Please sign in to comment.