Skip to content

Commit

Permalink
update comments (#233)
Browse files Browse the repository at this point in the history
  • Loading branch information
cehbrecht committed Sep 28, 2023
1 parent f51d90e commit 9a333f6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions rook/processes/wps_regrid.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,19 +29,19 @@ def __init__(self):
LiteralInput(
"method",
"Regrid method",
abstract="Regrid method like consevative or bilinear. Default: nearest_s2d",
abstract="Please specify regridding method like consevative or bilinear. Default: nearest_s2d",
data_type="string",
min_occurs=0,
min_occurs=1,
max_occurs=1,
allowed_values=["conservative", "patch", "nearest_s2d", "bilinear"],
default="nearest_s2d",
),
LiteralInput(
"grid",
"Regrid target grid",
abstract="Regrid target grid like 1deg. Default: 1deg",
abstract="Please specify output grid resolution for regridding. Default: 1deg",
data_type="string",
min_occurs=0,
min_occurs=1,
max_occurs=1,
allowed_values=["1deg", "2deg_lsm", "0pt25deg_era5_lsm"],
default="1deg",
Expand Down Expand Up @@ -77,7 +77,7 @@ def __init__(self):
self._handler,
identifier="regrid",
title="Regrid",
abstract="Regridding operator for climate model data.",
abstract="Run regridding operator on climate model data using daops (xarray).",
metadata=[
Metadata("DAOPS", "https://github.com/roocs/daops"),
],
Expand Down

0 comments on commit 9a333f6

Please sign in to comment.