Learn R Programming

s2dverification (version 2.4.0)

ConfigMatchingVars: Find Entries In List Of Supported Variables That Match A Variable

Description

Given a specific variable name, this function checks and shows if it matches with any of the patterns in the lists of supported variables.

Usage

ConfigMatchingVars(configuration, var, show = TRUE)

Arguments

Value

A boolean is returned. It tells whether the variable is supported as a 2-dimensional variable (TRUE) or as a global mean variable (FALSE).

See Also

ConfigAddVar, ConfigApplyMatchingEntries, ConfigEditDefinition, ConfigEditEntry, ConfigFileOpen, ConfigMatchingVars, ConfigShowSimilarEntries, ConfigShowTable

Examples

Run this code
# Create an empty configuration file
config_file <- paste0(tempdir(), "/example.conf")
ConfigFileCreate(config_file, confirm = FALSE)
# Open it into a configuration object
configuration <- ConfigFileOpen(config_file)
# Add an entry at the bottom of 4th level of file-per-startdate experiments 
# table which will associate the experiment "ExampleExperiment2" and variable 
# "ExampleVariable" to some information about its location.
configuration <- ConfigAddEntry(configuration, "experiments", 
                 "file-per-startdate", "last", "ExampleExperiment2", 
                 "ExampleVariable", "/path/to/ExampleExperiment2", 
                 "ExampleVariable/ExampleVariable_$START_DATE$.nc")
# Edit entry to generalize for any variable. Changing variable needs .
configuration <- ConfigEditEntry(configuration, "experiments", 
                 "file-per-startdate", 1, var_name = ".*", 
                 file_path = "$VAR_NAME$/$VAR_NAME$_$START_DATE$.nc")
# Now put a pattern to the list of supported variables. In this example will 
# be a two-dimensional variable.
configuration <- ConfigAddVar(configuration, "2d", "Example.*Variable")
# Check if some variables are supported after adding this rule
ConfigMatchingVars(configuration, "Example10Variable")
ConfigMatchingVars(configuration, "ExampleSomeVariable")
ConfigMatchingVars(configuration, "ExampleVariable")

Run the code above in your browser using DataLab