Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
FILTER_ID=All
 
# Identifier of the flag conversion file to use when extracting timeseries from the FewsPiService (type = string).
# If omitted no flag conversion takes place
EXPORT_FLAGCONVERSION_ID=My_Export_FlagConversion
 
# Identifier of the unit conversion file to use when extracting timeseries from the FewsPiService (type = string).
# If omitted no unit conversion takes place
EXPORT_UNITCONVERSION_ID=My_Export_UnitConversion
 
# Identifier of the id map file to use when extracting timeseries from the FewsPiService (type = string).
# If omitted no id mapping takes place
#EXPORT_IDMAP_ID=My_Export_IdMap
 
# Identifier of the unit conversion file to use when writing timeseries to the FewsPiService (type = string).
# If omitted no unit conversion takes place
IMPORT_UNITCONVERSION_ID=My_Import_UnitConversion
 
# Identifier of the id map file to use when writing timeseries to the FewsPiService (type = string).
# If omitted no id mapping takes place
IMPORT_IDMAP_ID=My_Import_IdMap
 
# Export missing value. All internal NaN values will be mapped to this value (type = float).
# If omitted the default value \-999 will be used.
MISSING_VALUE=-999
 
# Option to skip the export of missing values when reading timeseries from the FewsPiService (type = true/false).
# If omitted the default value 'true' is used.
OMIT_MISSING_VALUES=true
 
# Default time zone.
# If omitted, GMT-0 is used.
TIME_ZONE=GMT
 
# Option to return timeseries with value type SAMPLE in the getTimeSeries method.
# If omittedthe default value 'false' is used resulting in only SCALAR value types being returned.
SHOW_SAMPLE_TIMESERIES=true
 
# Readonly mode can be set to true if no only read access is allowed for FEWS WebServices methods.
# When set to true no create, write, update or execute functionality is allowed.
# default set to false in 2017.02
# Since 2018.02 the default is set to true
READONLY_MODE=false

# option to limit the grid plot groups that can be accessed by the webservice
WMS#WMS_ALLOWED_GRID_PLOT_GROUP_ID=

 

Here follows a explanation of these properties. All property names are case sensitive:

...