@@ -26,7 +26,8 @@ from evaluation_system.api.parameters import (
File,
SolrField,
String,
Bool
Bool,
Date
)
importfreva
...
...
@@ -130,10 +131,15 @@ class PET(plugin.PluginAbstract):
mandatory=True,
help="Select a file containing surface altitude data"
),
String(
name="time_period",
Date(
name="start_date",
mandatory=True,
help="Insert start date you want to select (YYYY-MM-DD)"
),
Date(
name="end_date",
mandatory=True,
help="Insert the time period you want to select (dates separated by a comma in format: YYYY-MM-DD,YYYY-MM-DD).\nLeave empty to use all available time steps."
help="Insert end date you want to select (YYYY-MM-DD)"
),
String(
name="region",
...
...
@@ -175,10 +181,7 @@ class PET(plugin.PluginAbstract):