diff --git a/docs/Contributors_Guide/coding_standards.rst b/docs/Contributors_Guide/coding_standards.rst index c99d5a9a6..06cdfe432 100644 --- a/docs/Contributors_Guide/coding_standards.rst +++ b/docs/Contributors_Guide/coding_standards.rst @@ -12,4 +12,4 @@ Coding Standards * `Doxygen `_, `Python docstrings `_, and `Sphinx `_ for documentation -* **NOTE: Please do not use f-strings in the master_metplus.py file so that the Python version check can notify the user of the incorrect version. Using Python 3.5 or earlier will output the SyntaxError from the f-string instead of the useful error message.** +* **NOTE: Please do not use f-strings in the run_metplus.py file so that the Python version check can notify the user of the incorrect version. Using Python 3.5 or earlier will output the SyntaxError from the f-string instead of the useful error message.** diff --git a/docs/Contributors_Guide/create_wrapper.rst b/docs/Contributors_Guide/create_wrapper.rst index 6d9a65c06..ab00d4963 100644 --- a/docs/Contributors_Guide/create_wrapper.rst +++ b/docs/Contributors_Guide/create_wrapper.rst @@ -82,7 +82,7 @@ If the wrapper will not loop and process for each forecast lead, put the logic t * Call self.clear() at the beginning of each loop iteration that tries to build/run a MET command to prevent inadvertently reusing/re-running commands that were previously created. -* Update the METplus/ush/master_metplus.py file to recognize your wrapper by adding an import statement:: +* Update the METplus/ush/run_metplus.py file to recognize your wrapper by adding an import statement:: from new_tool_wrapper import NewToolWrapper diff --git a/docs/Contributors_Guide/deprecation.rst b/docs/Contributors_Guide/deprecation.rst index 14c3c4d65..8d187c80d 100644 --- a/docs/Contributors_Guide/deprecation.rst +++ b/docs/Contributors_Guide/deprecation.rst @@ -76,7 +76,7 @@ should use LOOP_ORDER, but it is not required to change immediately. If you do this, you should check for LOOP_ORDER and then check for LOOP_METHOD if it is not set. -In master_metplus.py: +In run_metplus.py: :: diff --git a/docs/Contributors_Guide/github_workflow.rst b/docs/Contributors_Guide/github_workflow.rst index 60b4d9e1b..8bb67b833 100644 --- a/docs/Contributors_Guide/github_workflow.rst +++ b/docs/Contributors_Guide/github_workflow.rst @@ -19,7 +19,7 @@ The feature branch is named after the corresponding GitHub issue: When work is complete, the code in the feature branch is merged into the develop branch. When a release candidate for METplus has been determined, -then the develop branch is used to create a master_vx.y release of METplus, +then the develop branch is used to create a main_vx.y release of METplus, which includes data tarballs for use in running use cases. diff --git a/docs/Users_Guide/installation.rst b/docs/Users_Guide/installation.rst index f0a2d2dcb..de6df05fc 100644 --- a/docs/Users_Guide/installation.rst +++ b/docs/Users_Guide/installation.rst @@ -269,7 +269,7 @@ METplus Wrappers run and do not need to be invoked on the command line. - runtime-related settings: - - location of METplus master_metplus.conf file (the 'master' conf + - location of METplus run_metplus.conf file (the conf file that is a collection of all the final METplus configuration files) @@ -393,7 +393,7 @@ These cases can be handled automatically by using the :ref:`validate_config`, bu SED Commands ~~~~~~~~~~~~ -Running master_metplus.py with one or more configuration files that contain deprecated variables that can be fixed with a find/replace command will generate a file in the {OUTPUT_BASE} called sed_commands.txt. This file contains a list of commands that can be run to update the configuration file. Lines that start with "#Add" are intended to notify the user to add a variable to their METplus configuration file. +Running run_metplus.py with one or more configuration files that contain deprecated variables that can be fixed with a find/replace command will generate a file in the {OUTPUT_BASE} called sed_commands.txt. This file contains a list of commands that can be run to update the configuration file. Lines that start with "#Add" are intended to notify the user to add a variable to their METplus configuration file. The :ref:`validate_config` will step you through each of these commands and execute them upon your approval. @@ -412,9 +412,9 @@ Example sed_commands.txt content:: Validate Config Helper Script ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -The script named validate_config.py is found in the same directory as master_metplus.py. To use this script, call it with the same arguments that you would pass to master_metplus.py:: +The script named validate_config.py is found in the same directory as run_metplus.py. To use this script, call it with the same arguments that you would pass to run_metplus.py:: - master_metplus.py -c ./my_conf.py -c ./another_config.py + run_metplus.py -c ./my_conf.py -c ./another_config.py validate_config.py -c ./my_conf.py -c ./another_config.py You must pass a valid configuration to the script, as in you must properly set :term:`MET_INSTALL_DIR`, :term:`INPUT_BASE`, and :term:`OUTPUT_BASE`, or it will not run. @@ -498,7 +498,7 @@ Running METplus Wrappers ------------------------ Running METplus Wrappers involves invoking the Python script -master_metplus.py from any directory followed by a list of configuration +run_metplus.py from any directory followed by a list of configuration files (file path relative to the **/parm directory). @@ -525,7 +525,7 @@ Copy and paste the following into an empty text file and name it 'my_user_config # It will be created if it does not exist OUTPUT_BASE = /tmp/output -Run METplus via: ``master_metplus.py -c ./`` or ``master_metplus.py -c //`` if you saved your default config in a directory other than where you are running master_metplus.py. +Run METplus via: ``run_metplus.py -c ./`` or ``run_metplus.py -c //`` if you saved your default config in a directory other than where you are running run_metplus.py. When the above command is run, a usage message appears indicating that other config files are required to perform useful tasks, as well as a list of currently supported wrappers: @@ -534,11 +534,11 @@ When the above command is run, a usage message appears indicating that other con USAGE: This text is displayed when [config] PROCESS_LIST = Usage. Pass in a configuration file (with -c or --config) that overrides [config] PROCESS_LIST to run other processes. For example: - master_metplus.py -c parm/use_cases/met_tool_wrapper/GridStat/GridStat.conf + run_metplus.py -c parm/use_cases/met_tool_wrapper/GridStat/GridStat.conf or - master_metplus.py --config parm/use_cases/model_applications/precipitation/GridStat_fcstHRRR-TLE_obsStgIV_GRIB.conf + run_metplus.py --config parm/use_cases/model_applications/precipitation/GridStat_fcstHRRR-TLE_obsStgIV_GRIB.conf Possible processes: - ASCII2NC @@ -576,7 +576,7 @@ The command: .. code-block:: - master_metplus.py -c use_cases/met_tool_wrapper/GridStat/GridStat.conf + run_metplus.py -c use_cases/met_tool_wrapper/GridStat/GridStat.conf will run METplus using the defaults set in the config files found in parm/metplus_config. Any variables defined in these three config files can be overridden in the parm/use_cases/GridStat/GridStat.conf file. METplus will run using the values specified in the GridStat.conf file. @@ -586,7 +586,7 @@ The command: .. code-block:: - master_metplus.py -c use_cases/met_tool_wrapper/GridStat/GridStat.conf \ + run_metplus.py -c use_cases/met_tool_wrapper/GridStat/GridStat.conf \ -c use_cases/met_tool_wrapper/GridStat/GridStat_forecast.conf \ -c use_cases/met_tool_wrapper/GridStat/GridStat_observation.conf @@ -596,6 +596,6 @@ Separating configurations into multiple files can be useful if you want to compa .. code-block:: - master_metplus.py -c use_cases/met_tool_wrapper/GridStat/GridStat.conf \ + run_metplus.py -c use_cases/met_tool_wrapper/GridStat/GridStat.conf \ -c /home/user/METplus_user_config/GridStat_myforecast.conf \ -c use_cases/met_tool_wrapper/GridStat/GridStat_observation.conf diff --git a/docs/Users_Guide/systemconfiguration.rst b/docs/Users_Guide/systemconfiguration.rst index 250eec263..589aaa09a 100644 --- a/docs/Users_Guide/systemconfiguration.rst +++ b/docs/Users_Guide/systemconfiguration.rst @@ -1346,7 +1346,7 @@ Config Quick Start Example a. On your command line, run:: - master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/Example/Example.conf -c /path/to/user_system.conf + run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/Example/Example.conf -c /path/to/user_system.conf *where /path/to/user_system.conf indicates the location of the user_system.conf file you created earlier. @@ -1430,7 +1430,7 @@ Config Quick Start Example up the rest of your environment 4. On your command line, run:: - master_metplus.py -c parm/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_RPlotting.conf + run_metplus.py -c parm/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_RPlotting.conf 5. When complete, you will have a log file in the output directory you specified, and under the tc_pairs directory you will see diff --git a/docs/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC.py b/docs/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC.py index d7b9d7fd6..6876a9d7c 100644 --- a/docs/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC.py +++ b/docs/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC.py @@ -81,11 +81,11 @@ # # 1) Passing in ASCII2NC.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in ASCII2NC.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding.py b/docs/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding.py index 1c9c94b56..797f7cd7b 100644 --- a/docs/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding.py +++ b/docs/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding.py @@ -62,11 +62,11 @@ # # 1) Passing in ASCII2NC_python_embedding.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in ASCII2NC_python_embedding.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding_user_py.py b/docs/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding_user_py.py index 05e77966d..5739ca87e 100644 --- a/docs/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding_user_py.py +++ b/docs/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding_user_py.py @@ -65,11 +65,11 @@ # # 1) Passing in ASCII2NC_python_embedding_user_py.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding_user_py.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding_user_py.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in ASCII2NC_python_embedding_user_py.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding_user_py.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ASCII2NC/ASCII2NC_python_embedding_user_py.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/CyclonePlotter/CyclonePlotter.py b/docs/use_cases/met_tool_wrapper/CyclonePlotter/CyclonePlotter.py index 799f537df..4eb79717e 100644 --- a/docs/use_cases/met_tool_wrapper/CyclonePlotter/CyclonePlotter.py +++ b/docs/use_cases/met_tool_wrapper/CyclonePlotter/CyclonePlotter.py @@ -63,12 +63,12 @@ # # 1) Passing in CyclonePlotter.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/CyclonePlotter/CyclonePlotter.conf \ +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/CyclonePlotter/CyclonePlotter.conf \ # -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in CyclonePlotter.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/CyclonePlotter/CyclonePlotter.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/CyclonePlotter/CyclonePlotter.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat.py b/docs/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat.py index d5f2e0c7c..78cdcf978 100644 --- a/docs/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat.py +++ b/docs/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat.py @@ -101,7 +101,7 @@ # # Passing in EnsembleStat.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat.conf -c /path/to/user_system.conf # # The following METplus configuration variables must be set correctly to run this example.: # diff --git a/docs/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat_python_embedding.py b/docs/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat_python_embedding.py index f9f67b70c..1c6242f08 100644 --- a/docs/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat_python_embedding.py +++ b/docs/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat_python_embedding.py @@ -84,7 +84,7 @@ # # Passing in EnsembleStat_python_embedding.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat_python_embedding.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/EnsembleStat/EnsembleStat_python_embedding.conf -c /path/to/user_system.conf # # The following METplus configuration variables must be set correctly to run this example.: # diff --git a/docs/use_cases/met_tool_wrapper/Example/Example.py b/docs/use_cases/met_tool_wrapper/Example/Example.py index 2e72ebe18..0880a8fbe 100644 --- a/docs/use_cases/met_tool_wrapper/Example/Example.py +++ b/docs/use_cases/met_tool_wrapper/Example/Example.py @@ -143,11 +143,11 @@ # # 1) Passing in Example.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/Example/Example.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/Example/Example.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in Example.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/Example/Example.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/Example/Example.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/ExtractTiles/ExtractTiles.py b/docs/use_cases/met_tool_wrapper/ExtractTiles/ExtractTiles.py index cb991cee9..cc4b938f0 100644 --- a/docs/use_cases/met_tool_wrapper/ExtractTiles/ExtractTiles.py +++ b/docs/use_cases/met_tool_wrapper/ExtractTiles/ExtractTiles.py @@ -68,11 +68,11 @@ # # 1) Passing in ExtractTiles.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ExtractTiles/ExtractTiles.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ExtractTiles/ExtractTiles.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in ExtractTiles.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ExtractTiles/ExtractTiles.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/ExtractTiles/ExtractTiles.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/GempakToCF/GempakToCF.py b/docs/use_cases/met_tool_wrapper/GempakToCF/GempakToCF.py index b8584b8b5..cbdf02b8a 100644 --- a/docs/use_cases/met_tool_wrapper/GempakToCF/GempakToCF.py +++ b/docs/use_cases/met_tool_wrapper/GempakToCF/GempakToCF.py @@ -82,11 +82,11 @@ # # 1) Passing in GempakToCF.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GempakToCF/GempakToCF.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GempakToCF/GempakToCF.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GempakToCF.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GempakToCF/GempakToCF.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GempakToCF/GempakToCF.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/GenVxMask/GenVxMask.py b/docs/use_cases/met_tool_wrapper/GenVxMask/GenVxMask.py index 13b700145..62ea817a8 100644 --- a/docs/use_cases/met_tool_wrapper/GenVxMask/GenVxMask.py +++ b/docs/use_cases/met_tool_wrapper/GenVxMask/GenVxMask.py @@ -67,11 +67,11 @@ # # 1) Passing in the use case config file then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GenVxMask/GenVxMask.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GenVxMask/GenVxMask.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in the use case config file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GenVxMask/GenVxMask.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GenVxMask/GenVxMask.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_multiple.py b/docs/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_multiple.py index ca053a3a9..597096f11 100644 --- a/docs/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_multiple.py +++ b/docs/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_multiple.py @@ -67,11 +67,11 @@ # # 1) Passing in the use case config file then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_multiple.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_multiple.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in the use case config file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_multiple.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_multiple.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_with_arguments.py b/docs/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_with_arguments.py index 2af769b9e..494ade02c 100644 --- a/docs/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_with_arguments.py +++ b/docs/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_with_arguments.py @@ -67,11 +67,11 @@ # # 1) Passing in the use case config file then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_with_arguments.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_with_arguments.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in the use case config file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_with_arguments.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GenVxMask/GenVxMask_with_arguments.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/GridDiag/GridDiag.py b/docs/use_cases/met_tool_wrapper/GridDiag/GridDiag.py index 7f80e4f8e..b4723b5a1 100644 --- a/docs/use_cases/met_tool_wrapper/GridDiag/GridDiag.py +++ b/docs/use_cases/met_tool_wrapper/GridDiag/GridDiag.py @@ -69,11 +69,11 @@ # # 1) Passing in GridDiag.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridDiag/GridDiag.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridDiag/GridDiag.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridDiag.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridDiag/GridDiag.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridDiag/GridDiag.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/GridStat/GridStat.py b/docs/use_cases/met_tool_wrapper/GridStat/GridStat.py index 41a7fa1db..8abde0b4e 100644 --- a/docs/use_cases/met_tool_wrapper/GridStat/GridStat.py +++ b/docs/use_cases/met_tool_wrapper/GridStat/GridStat.py @@ -73,11 +73,11 @@ # # 1) Passing in GridStat.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridStat.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/GridStat/GridStat_multiple_config_files.py b/docs/use_cases/met_tool_wrapper/GridStat/GridStat_multiple_config_files.py index 591bdfa80..9b95618ba 100644 --- a/docs/use_cases/met_tool_wrapper/GridStat/GridStat_multiple_config_files.py +++ b/docs/use_cases/met_tool_wrapper/GridStat/GridStat_multiple_config_files.py @@ -101,7 +101,7 @@ # # 1) Passing in GridStat.conf, GridStat_forecast.conf, GridStat_observation.conf, an explicit override of the output directory, then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat.conf # -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat_forecast.conf # -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat_observation.conf # -c dir.GRID_STAT_OUTPUT_DIR={OUTPUT_BASE}/met_tool_wrapper/GridStat/GridStat_multiple_config @@ -109,7 +109,7 @@ # # 2) Modifying the configurations in parm/metplus_config, passing in GridStat.conf, GridStat_forecast.conf, GridStat_observation.conf, and an explicit override of the output directory:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat.conf # -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat_forecast.conf # -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat_observation.conf # -c dir.GRID_STAT_OUTPUT_DIR={OUTPUT_BASE}/met_tool_wrapper/GridStat/GridStat_multiple_config diff --git a/docs/use_cases/met_tool_wrapper/GridStat/GridStat_python_embedding.py b/docs/use_cases/met_tool_wrapper/GridStat/GridStat_python_embedding.py index d07c72de8..e5d84eb39 100644 --- a/docs/use_cases/met_tool_wrapper/GridStat/GridStat_python_embedding.py +++ b/docs/use_cases/met_tool_wrapper/GridStat/GridStat_python_embedding.py @@ -81,11 +81,11 @@ # # 1) Passing in GridStat_python_embedding.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat_python_embedding.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat_python_embedding.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridStat_python_embedding.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat_python_embedding.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/GridStat_python_embedding.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/MODE/MODE.py b/docs/use_cases/met_tool_wrapper/MODE/MODE.py index bc7fe5c8e..d20800ea9 100644 --- a/docs/use_cases/met_tool_wrapper/MODE/MODE.py +++ b/docs/use_cases/met_tool_wrapper/MODE/MODE.py @@ -89,11 +89,11 @@ # # 1) Passing in MODE.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/MODE/MODE.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/MODE/MODE.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in MODE.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/MODE/MODE.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/MODE/MODE.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/MTD/MTD.py b/docs/use_cases/met_tool_wrapper/MTD/MTD.py index 637edc39e..0b7addce8 100644 --- a/docs/use_cases/met_tool_wrapper/MTD/MTD.py +++ b/docs/use_cases/met_tool_wrapper/MTD/MTD.py @@ -87,11 +87,11 @@ # # 1) Passing in MTD.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/MTD/MTD.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/MTD/MTD.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in MTD.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/MTD/MTD.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/MTD/MTD.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/MTD/MTD_python_embedding.py b/docs/use_cases/met_tool_wrapper/MTD/MTD_python_embedding.py index f48a57662..22654b985 100644 --- a/docs/use_cases/met_tool_wrapper/MTD/MTD_python_embedding.py +++ b/docs/use_cases/met_tool_wrapper/MTD/MTD_python_embedding.py @@ -84,11 +84,11 @@ # # 1) Passing in MTD_python_embedding.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/MTD/MTD_python_embedding.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/MTD/MTD_python_embedding.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in MTD_python_embedding.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/MTD/MTD_python_embedding.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/MTD/MTD_python_embedding.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PB2NC/PB2NC.py b/docs/use_cases/met_tool_wrapper/PB2NC/PB2NC.py index 92ccaf7a5..e24868b37 100644 --- a/docs/use_cases/met_tool_wrapper/PB2NC/PB2NC.py +++ b/docs/use_cases/met_tool_wrapper/PB2NC/PB2NC.py @@ -82,11 +82,11 @@ # # 1) Passing in PB2NC.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PB2NC/PB2NC.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PB2NC/PB2NC.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PB2NC.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PB2NC/PB2NC.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PB2NC/PB2NC.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_add.py b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_add.py index ed45930ea..84e22ac5b 100644 --- a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_add.py +++ b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_add.py @@ -67,11 +67,11 @@ # # 1) Passing in PCPCombine_add.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_add.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_add.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PCPCombine_add.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_add.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_add.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_bucket.py b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_bucket.py index 5e8cf98d1..9ac7a246e 100644 --- a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_bucket.py +++ b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_bucket.py @@ -67,11 +67,11 @@ # # 1) Passing in PCPCombine_bucket.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_bucket.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_bucket.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PCPCombine_bucket.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_bucket.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_bucket.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_derive.py b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_derive.py index a907795f5..e84be54a8 100644 --- a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_derive.py +++ b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_derive.py @@ -68,11 +68,11 @@ # # 1) Passing in PCPCombine_derive.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_derive.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_derive.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PCPCombine_derive.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_derive.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_derive.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_loop_custom.py b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_loop_custom.py index e55aefa9a..46b0b38b3 100644 --- a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_loop_custom.py +++ b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_loop_custom.py @@ -69,11 +69,11 @@ # # 1) Passing in PCPCombine_loop_custom.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_loop_custom.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_loop_custom.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PCPCombine_loop_custom.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_loop_custom.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_loop_custom.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_python_embedding.py b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_python_embedding.py index 3e3fc5a03..9b4e06507 100644 --- a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_python_embedding.py +++ b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_python_embedding.py @@ -84,11 +84,11 @@ # # 1) Passing in PCPCombine_python_embedding.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_python_embedding.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_python_embedding.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PCPCombine_python_embedding.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_python_embedding.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_python_embedding.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_subtract.py b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_subtract.py index 8ed86ed68..60c3fd408 100644 --- a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_subtract.py +++ b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_subtract.py @@ -67,11 +67,11 @@ # # 1) Passing in PCPCombine_subtract.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_subtract.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_subtract.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PCPCombine_subtract.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_subtract.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_subtract.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_sum.py b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_sum.py index a73e729f5..2d23930f9 100644 --- a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_sum.py +++ b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_sum.py @@ -65,11 +65,11 @@ # # 1) Passing in PCPCombine_sum.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_sum.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_sum.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PCPCombine_sum.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_sum.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_sum.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_user_defined.py b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_user_defined.py index 232ed65ca..365c870d1 100644 --- a/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_user_defined.py +++ b/docs/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_user_defined.py @@ -72,11 +72,11 @@ # # 1) Passing in PCPCombine_user_defined.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_user_defined.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_user_defined.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PCPCombine_user_defined.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_user_defined.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PCPCombine/PCPCombine_user_defined.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_grib1.py b/docs/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_grib1.py index 578c32839..575435163 100644 --- a/docs/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_grib1.py +++ b/docs/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_grib1.py @@ -65,11 +65,11 @@ # # 1) Passing in PlotDataPlane_grib1.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_grib1.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_grib1.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PlotDataPlane_grib1.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_grib1.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_grib1.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_netcdf.py b/docs/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_netcdf.py index 163f61a30..7f65e1da5 100644 --- a/docs/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_netcdf.py +++ b/docs/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_netcdf.py @@ -65,11 +65,11 @@ # # 1) Passing in PlotDataPlane_netcdf.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_netcdf.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_netcdf.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PlotDataPlane_netcdf.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_netcdf.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_netcdf.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_python_embedding.py b/docs/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_python_embedding.py index 679e7a28b..4a049be6d 100644 --- a/docs/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_python_embedding.py +++ b/docs/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_python_embedding.py @@ -65,11 +65,11 @@ # # 1) Passing in PlotDataPlane_python_embedding.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_python_embedding.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_python_embedding.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PlotDataPlane_python_embedding.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_python_embedding.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PlotDataPlane/PlotDataPlane_python_embedding.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/Point2Grid/Point2Grid.py b/docs/use_cases/met_tool_wrapper/Point2Grid/Point2Grid.py index dc5e03bbd..ac2ec9659 100644 --- a/docs/use_cases/met_tool_wrapper/Point2Grid/Point2Grid.py +++ b/docs/use_cases/met_tool_wrapper/Point2Grid/Point2Grid.py @@ -63,11 +63,11 @@ # # 1) Passing in Point2Grid.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/Point2Grid/Point2Grid.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/Point2Grid/Point2Grid.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in Point2Grid.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/Point2Grid/Point2Grid.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/Point2Grid/Point2Grid.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PointStat/PointStat.py b/docs/use_cases/met_tool_wrapper/PointStat/PointStat.py index 0c051575c..968017833 100644 --- a/docs/use_cases/met_tool_wrapper/PointStat/PointStat.py +++ b/docs/use_cases/met_tool_wrapper/PointStat/PointStat.py @@ -88,11 +88,11 @@ # # 1) Passing in PointStat.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PointStat/PointStat.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PointStat/PointStat.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PointStat.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PointStat/PointStat.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PointStat/PointStat.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PointStat/PointStat_once_per_field.py b/docs/use_cases/met_tool_wrapper/PointStat/PointStat_once_per_field.py index 13c322e5c..8c3c44826 100644 --- a/docs/use_cases/met_tool_wrapper/PointStat/PointStat_once_per_field.py +++ b/docs/use_cases/met_tool_wrapper/PointStat/PointStat_once_per_field.py @@ -94,11 +94,11 @@ # # 1) Passing in PointStat.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PointStat/PointStat_once_per_field.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PointStat/PointStat_once_per_field.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PointStat_once_per_field.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PointStat/PointStat_once_per_field.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PointStat/PointStat_once_per_field.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest.py b/docs/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest.py index d8caaf486..f14b6c937 100644 --- a/docs/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest.py +++ b/docs/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest.py @@ -60,11 +60,11 @@ # # 1) Passing in PyEmbedIngest.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PyEmbedIngest.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest_multi_field_one_file.py b/docs/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest_multi_field_one_file.py index 615462ac8..85a7ee245 100644 --- a/docs/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest_multi_field_one_file.py +++ b/docs/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest_multi_field_one_file.py @@ -63,11 +63,11 @@ # # 1) Passing in PyEmbedIngest_multi_field_one_file.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest_multi_field_one_file.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest_multi_field_one_file.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PyEmbedIngest_multi_field_one_file.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest_multi_field_one_file.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/PyEmbedIngest/PyEmbedIngest_multi_field_one_file.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane.py b/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane.py index df9dd98cc..001a43303 100644 --- a/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane.py +++ b/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane.py @@ -67,11 +67,11 @@ # # 1) Passing in RegridDataPlane.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in RegridDataPlane.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_multi_file.py b/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_multi_file.py index e261b2011..dd203c69f 100644 --- a/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_multi_file.py +++ b/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_multi_file.py @@ -69,11 +69,11 @@ # # 1) Passing in RegridDataPlane_multi_field_multi_file.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_multi_file.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_multi_file.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in RegridDataPlane_multi_field_multi_file.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_multi_file.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_multi_file.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_one_file.py b/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_one_file.py index 86479c1d2..008914459 100644 --- a/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_one_file.py +++ b/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_one_file.py @@ -69,11 +69,11 @@ # # 1) Passing in RegridDataPlane_multi_field_one_file.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_one_file.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_one_file.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in RegridDataPlane_multi_field_one_file.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_one_file.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_multi_field_one_file.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_python_embedding.py b/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_python_embedding.py index 275e9bd14..082e56c5e 100644 --- a/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_python_embedding.py +++ b/docs/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_python_embedding.py @@ -64,11 +64,11 @@ # # 1) Passing in RegridDataPlane_python_embedding.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_python_embedding.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_python_embedding.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in RegridDataPlane_python_embedding.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_python_embedding.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/RegridDataPlane/RegridDataPlane_python_embedding.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis.py b/docs/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis.py index bda21b8be..606f15def 100644 --- a/docs/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis.py +++ b/docs/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis.py @@ -79,11 +79,11 @@ # # 1) Passing in SeriesAnalysis.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in SeriesAnalysis.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis_python_embedding.py b/docs/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis_python_embedding.py index 75fa3879c..ea8a455ed 100644 --- a/docs/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis_python_embedding.py +++ b/docs/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis_python_embedding.py @@ -77,11 +77,11 @@ # # 1) Passing in SeriesAnalysis_python_embedding.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis_python_embedding.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis_python_embedding.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in SeriesAnalysis_python_embedding.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis_python_embedding.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/SeriesAnalysis/SeriesAnalysis_python_embedding.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/StatAnalysis/StatAnalysis.py b/docs/use_cases/met_tool_wrapper/StatAnalysis/StatAnalysis.py index 9f0a22c5a..a2e4c4726 100644 --- a/docs/use_cases/met_tool_wrapper/StatAnalysis/StatAnalysis.py +++ b/docs/use_cases/met_tool_wrapper/StatAnalysis/StatAnalysis.py @@ -116,7 +116,7 @@ # # Passing in StatAnalysis.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/StatAnalysis.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/StatAnalysis.conf -c /path/to/user_system.conf # # The following METplus configuration variables must be set correctly to run this example.: # diff --git a/docs/use_cases/met_tool_wrapper/StatAnalysis/StatAnalysis_python_embedding.py b/docs/use_cases/met_tool_wrapper/StatAnalysis/StatAnalysis_python_embedding.py index b66648613..929044fc4 100644 --- a/docs/use_cases/met_tool_wrapper/StatAnalysis/StatAnalysis_python_embedding.py +++ b/docs/use_cases/met_tool_wrapper/StatAnalysis/StatAnalysis_python_embedding.py @@ -114,7 +114,7 @@ # # Passing in StatAnalysis_python_embedding.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/StatAnalysis_python_embedding.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/StatAnalysis_python_embedding.conf -c /path/to/user_system.conf # # The following METplus configuration variables must be set correctly to run this example.: # diff --git a/docs/use_cases/met_tool_wrapper/TCGen/TCGen.py b/docs/use_cases/met_tool_wrapper/TCGen/TCGen.py index bbb7d7b8f..db58d8ed1 100644 --- a/docs/use_cases/met_tool_wrapper/TCGen/TCGen.py +++ b/docs/use_cases/met_tool_wrapper/TCGen/TCGen.py @@ -91,11 +91,11 @@ # This use case can be run two ways: # 1) Passing in TCGen.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCGen/TCGen.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCGen/TCGen.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in TCGen.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCGen/TCGen.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCGen/TCGen.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following METplus configuration variables must be set correctly to run this example.: # diff --git a/docs/use_cases/met_tool_wrapper/TCMPRPlotter/TCMPRPlotter.py b/docs/use_cases/met_tool_wrapper/TCMPRPlotter/TCMPRPlotter.py index be50f99bd..679b27637 100644 --- a/docs/use_cases/met_tool_wrapper/TCMPRPlotter/TCMPRPlotter.py +++ b/docs/use_cases/met_tool_wrapper/TCMPRPlotter/TCMPRPlotter.py @@ -62,11 +62,11 @@ # # 1) Passing in TCMPRPlotter.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCMPRPlotter/TCMPRPlotter.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCMPRPlotter/TCMPRPlotter.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in TCMPRPlotter.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCMPRPlotter/TCMPRPlotter.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCMPRPlotter/TCMPRPlotter.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/TCPairs/TCPairs_extra_tropical.py b/docs/use_cases/met_tool_wrapper/TCPairs/TCPairs_extra_tropical.py index eae57326d..3ed50266e 100644 --- a/docs/use_cases/met_tool_wrapper/TCPairs/TCPairs_extra_tropical.py +++ b/docs/use_cases/met_tool_wrapper/TCPairs/TCPairs_extra_tropical.py @@ -89,7 +89,7 @@ # # Passing in TCPairs_extra_tropical.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/TCPairs_extra_tropical.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/TCPairs_extra_tropical.conf -c /path/to/user_system.conf # # The following METplus configuration variables must be set correctly to run this example.: # diff --git a/docs/use_cases/met_tool_wrapper/TCPairs/TCPairs_tropical.py b/docs/use_cases/met_tool_wrapper/TCPairs/TCPairs_tropical.py index ebc411b3d..59077c425 100644 --- a/docs/use_cases/met_tool_wrapper/TCPairs/TCPairs_tropical.py +++ b/docs/use_cases/met_tool_wrapper/TCPairs/TCPairs_tropical.py @@ -88,10 +88,10 @@ # # 1) Passing in TCPairs_tropical.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/TCPairs_tropical.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/TCPairs_tropical.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in TCPairs_tropical.conf:: -# master_metplus.py -c /path/to/TCPairs_tropical.conf +# run_metplus.py -c /path/to/TCPairs_tropical.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following METplus configuration variables must be set correctly to run this example.: # diff --git a/docs/use_cases/met_tool_wrapper/TCRMW/TCRMW.py b/docs/use_cases/met_tool_wrapper/TCRMW/TCRMW.py index 6346d4307..1fa42ed27 100644 --- a/docs/use_cases/met_tool_wrapper/TCRMW/TCRMW.py +++ b/docs/use_cases/met_tool_wrapper/TCRMW/TCRMW.py @@ -71,11 +71,11 @@ # # 1) Passing in TCRMW.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCRMW/TCRMW.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCRMW/TCRMW.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in TCRMW.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCRMW/TCRMW.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCRMW/TCRMW.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/TCStat/TCStat.py b/docs/use_cases/met_tool_wrapper/TCStat/TCStat.py index 399642748..7b2ea5ff6 100644 --- a/docs/use_cases/met_tool_wrapper/TCStat/TCStat.py +++ b/docs/use_cases/met_tool_wrapper/TCStat/TCStat.py @@ -70,11 +70,11 @@ # # 1) Passing in TCStat.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCStat/TCStat.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCStat/TCStat.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in TCStat.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCStat/TCStat.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/TCStat/TCStat.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once.py b/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once.py index b077c37b7..a0ea55eea 100644 --- a/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once.py +++ b/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once.py @@ -65,11 +65,11 @@ # # 1) Passing in UserScript_run_once.conf_run_once then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/UserScript/UserScript_run_once.conf_run_once -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/UserScript/UserScript_run_once.conf_run_once -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in UserScript_run_once.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/UserScript_run_once.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/UserScript_run_once.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_for_each.py b/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_for_each.py index 28e00b9e1..6e5384775 100644 --- a/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_for_each.py +++ b/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_for_each.py @@ -80,11 +80,11 @@ # # 1) Passing in UserScript_run_once_for_each.conf_run_once then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_for_each.conf_run_once -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_for_each.conf_run_once -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in UserScript_run_once_for_each.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/UserScript_run_once_for_each.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/UserScript_run_once_for_each.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_init.py b/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_init.py index 3e79fe91d..68ac98dbe 100644 --- a/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_init.py +++ b/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_init.py @@ -68,11 +68,11 @@ # # 1) Passing in UserScript_run_once_per_init.conf_run_once then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_init.conf_run_once -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_init.conf_run_once -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in UserScript_run_once_per_init.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/UserScript_run_once_per_init.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/UserScript_run_once_per_init.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_lead.py b/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_lead.py index fdc4757c6..b06a9a3b6 100644 --- a/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_lead.py +++ b/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_lead.py @@ -69,11 +69,11 @@ # # 1) Passing in UserScript_run_once_per_lead.conf_run_once then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_lead.conf_run_once -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_lead.conf_run_once -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in UserScript_run_once_per_lead.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/UserScript_run_once_per_lead.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/UserScript_run_once_per_lead.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_valid.py b/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_valid.py index 39c7367d1..b6fde9268 100644 --- a/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_valid.py +++ b/docs/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_valid.py @@ -68,11 +68,11 @@ # # 1) Passing in UserScript_run_once_per_valid.conf_run_once then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_valid.conf_run_once -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/UserScript/UserScript_run_once_per_valid.conf_run_once -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in UserScript_run_once_per_valid.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/UserScript_run_once_per_valid.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/met_tool_wrapper/GridStat/UserScript_run_once_per_valid.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/air_quality_and_comp/EnsembleStat_fcstICAP_obsMODIS_aod.py b/docs/use_cases/model_applications/air_quality_and_comp/EnsembleStat_fcstICAP_obsMODIS_aod.py index d41130471..1bf13ffe6 100644 --- a/docs/use_cases/model_applications/air_quality_and_comp/EnsembleStat_fcstICAP_obsMODIS_aod.py +++ b/docs/use_cases/model_applications/air_quality_and_comp/EnsembleStat_fcstICAP_obsMODIS_aod.py @@ -101,7 +101,7 @@ # # Passing in EnsembleStat_python_embedding.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/air_quality_and_comp/EnsembleStat_fcstICAP_obsMODIS_aod.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/air_quality_and_comp/EnsembleStat_fcstICAP_obsMODIS_aod.conf -c /path/to/user_system.conf # # The following METplus configuration variables must be set correctly to run this example.: # diff --git a/docs/use_cases/model_applications/climate/GridStat_fcstCESM_obsGFS_ConusTemp.py b/docs/use_cases/model_applications/climate/GridStat_fcstCESM_obsGFS_ConusTemp.py index f4cb66c24..ec6a29437 100644 --- a/docs/use_cases/model_applications/climate/GridStat_fcstCESM_obsGFS_ConusTemp.py +++ b/docs/use_cases/model_applications/climate/GridStat_fcstCESM_obsGFS_ConusTemp.py @@ -82,11 +82,11 @@ # # 1) Passing in GridStat_fcstCESM_obsGFS_ConusTemp.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/climate/GridStat_fcstCESM_obsGFS_ConusTemp.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/climate/GridStat_fcstCESM_obsGFS_ConusTemp.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridStat_fcstCESM_obsGFS_ConusTemp.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/climate/GridStat_fcstCESM_obsGFS_ConusTemp.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/climate/GridStat_fcstCESM_obsGFS_ConusTemp.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/climate/MODE_fcstCESM_obsGPCP_AsianMonsoonPrecip.py b/docs/use_cases/model_applications/climate/MODE_fcstCESM_obsGPCP_AsianMonsoonPrecip.py index e48e9f5cd..c87acdeba 100644 --- a/docs/use_cases/model_applications/climate/MODE_fcstCESM_obsGPCP_AsianMonsoonPrecip.py +++ b/docs/use_cases/model_applications/climate/MODE_fcstCESM_obsGPCP_AsianMonsoonPrecip.py @@ -82,11 +82,11 @@ # # 1) Passing in MODE_fcstCESM_obsGPCP_ConusPrecip.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/climate/MODE_fcstCESM_obsGPCP_AsianMonsoonPrecip.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/climate/MODE_fcstCESM_obsGPCP_AsianMonsoonPrecip.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in MODE_fcstCESM_obsGPCP_AsianMonsoonPrecip.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/climate/MODE_fcstCESM_obsGPCP_AsianMonsoonPrecip.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/climate/MODE_fcstCESM_obsGPCP_AsianMonsoonPrecip.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField.py b/docs/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField.py index e3a23b9da..06cc3e99e 100644 --- a/docs/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField.py +++ b/docs/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField.py @@ -91,11 +91,11 @@ # # 1) Passing in EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRR_fcstOnly_SurrogateSevere.py b/docs/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRR_fcstOnly_SurrogateSevere.py index c10923e91..7ad021076 100644 --- a/docs/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRR_fcstOnly_SurrogateSevere.py +++ b/docs/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRR_fcstOnly_SurrogateSevere.py @@ -85,7 +85,7 @@ # # The command to run this use case is:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRR_fcstOnly_SurrogateSevere.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/EnsembleStat_fcstHRRR_fcstOnly_SurrogateSevere.conf ################################################################################################### # Expected Output diff --git a/docs/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevere.py b/docs/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevere.py index 2a48a494a..0c2ed8030 100644 --- a/docs/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevere.py +++ b/docs/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevere.py @@ -74,11 +74,11 @@ # # 1) Passing in GridStat_fcstHRRR_obsPracPerfect_SurrogateSevere.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevere.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevere.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridStat_fcstHRRR_obsPracPerfect_SurrogateSevere.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevere.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevere.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevereProb.py b/docs/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevereProb.py index 827f4f4b8..98d323e1a 100644 --- a/docs/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevereProb.py +++ b/docs/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevereProb.py @@ -76,11 +76,11 @@ # # 1) Passing in GridStat_fcstHRRR_obsPracPerfect_SurrogateSevere.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevereProb.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevereProb.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridStat_fcstHRRR_obsPracPerfect_SurrogateSevere.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevereProb.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/GridStat_fcstHRRR_obsPracPerfect_SurrogateSevereProb.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/convection_allowing_models/MODE_fcstFV3_obsGOES_BrightnessTemp.py b/docs/use_cases/model_applications/convection_allowing_models/MODE_fcstFV3_obsGOES_BrightnessTemp.py index d3fc1ccb0..dfec5e496 100644 --- a/docs/use_cases/model_applications/convection_allowing_models/MODE_fcstFV3_obsGOES_BrightnessTemp.py +++ b/docs/use_cases/model_applications/convection_allowing_models/MODE_fcstFV3_obsGOES_BrightnessTemp.py @@ -75,11 +75,11 @@ # # 1) Passing in MODE_fcstFV3_obsGOES_BrightnessTemp.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/MODE_fcstFV3_obsGOES_BrightnessTemp.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/MODE_fcstFV3_obsGOES_BrightnessTemp.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in MODE_fcstFV3_obsGOES_BrightnessTemp.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/MODE_fcstFV3_obsGOES_BrightnessTemp.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/MODE_fcstFV3_obsGOES_BrightnessTemp.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/convection_allowing_models/MODE_fcstHRRR_obsMRMS_Hail_GRIB2.py b/docs/use_cases/model_applications/convection_allowing_models/MODE_fcstHRRR_obsMRMS_Hail_GRIB2.py index c8e78873f..1c898199c 100644 --- a/docs/use_cases/model_applications/convection_allowing_models/MODE_fcstHRRR_obsMRMS_Hail_GRIB2.py +++ b/docs/use_cases/model_applications/convection_allowing_models/MODE_fcstHRRR_obsMRMS_Hail_GRIB2.py @@ -80,11 +80,11 @@ # # 1) Passing in MODE_fcstHRRRE_obsMRMS_Hail_GRIB2.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/MODE_fcstHRRRE_obsMRMS_Hail_GRIB2.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/MODE_fcstHRRRE_obsMRMS_Hail_GRIB2.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in MODE_fcstHRRRE_obsMRMS_Hail_GRIB2.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/MODE_fcstHRRRE_obsMRMS_Hail_GRIB2.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/MODE_fcstHRRRE_obsMRMS_Hail_GRIB2.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/convection_allowing_models/Point2Grid_obsLSR_ObsOnly_PracticallyPerfect.py b/docs/use_cases/model_applications/convection_allowing_models/Point2Grid_obsLSR_ObsOnly_PracticallyPerfect.py index 4c4202663..8aca01fc8 100644 --- a/docs/use_cases/model_applications/convection_allowing_models/Point2Grid_obsLSR_ObsOnly_PracticallyPerfect.py +++ b/docs/use_cases/model_applications/convection_allowing_models/Point2Grid_obsLSR_ObsOnly_PracticallyPerfect.py @@ -97,11 +97,11 @@ # # 1) Passing in EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/Point2Grid_obsLSR_ObsOnly_PracticallyPerfect.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/Point2Grid_obsLSR_ObsOnly_PracticallyPerfect.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in EnsembleStat_fcstHRRRE_obsHRRRE_Sfc_MultiField.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/Point2Grid_obsLSR_ObsOnly_PracticallyPerfect.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/convection_allowing_models/Point2Grid_obsLSR_ObsOnly_PracticallyPerfect.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/cryosphere/GridStat_MODE_fcstIMS_obsNCEP_sea_ice.py b/docs/use_cases/model_applications/cryosphere/GridStat_MODE_fcstIMS_obsNCEP_sea_ice.py index 26e961fa8..77433c3be 100644 --- a/docs/use_cases/model_applications/cryosphere/GridStat_MODE_fcstIMS_obsNCEP_sea_ice.py +++ b/docs/use_cases/model_applications/cryosphere/GridStat_MODE_fcstIMS_obsNCEP_sea_ice.py @@ -101,10 +101,10 @@ # # 1) Passing in GridStat_MODE_fcstIMS_obsNCEP_sea_ice.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/cryosphere/GridStat_MODE_fcstIMS_obsNCEP_sea_ice.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/cryosphere/GridStat_MODE_fcstIMS_obsNCEP_sea_ice.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridStat_MODE_fcstIMS_obsNCEP_sea_ice.conf:: -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/cryosphere/GridStat_MODE_fcstIMS_obsNCEP_sea_ice.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/cryosphere/GridStat_MODE_fcstIMS_obsNCEP_sea_ice.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/data_assimilation/StatAnalysis_fcstHAFS_obsPrepBufr_JEDI_IODA_interface.py b/docs/use_cases/model_applications/data_assimilation/StatAnalysis_fcstHAFS_obsPrepBufr_JEDI_IODA_interface.py index 105b929cb..6b7028e50 100644 --- a/docs/use_cases/model_applications/data_assimilation/StatAnalysis_fcstHAFS_obsPrepBufr_JEDI_IODA_interface.py +++ b/docs/use_cases/model_applications/data_assimilation/StatAnalysis_fcstHAFS_obsPrepBufr_JEDI_IODA_interface.py @@ -143,7 +143,7 @@ # # Passing in StatAnalysis_fcstHAFS_obsPrepBufr_JEDI_IODA_interface.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/StatAnalysis_fcstHAFS_obsPrepBufr_JEDI_IODA_interface.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/StatAnalysis_fcstHAFS_obsPrepBufr_JEDI_IODA_interface.conf -c /path/to/user_system.conf # # The following METplus configuration variables must be set correctly to run this example.: # diff --git a/docs/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_Sfc_MultiField.py b/docs/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_Sfc_MultiField.py index 581b174e9..ff49d51c4 100644 --- a/docs/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_Sfc_MultiField.py +++ b/docs/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_Sfc_MultiField.py @@ -90,11 +90,11 @@ # # 1) Passing in GridStat_fcstGFS_obsGFS_Sfc_MultiField.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_Sfc_MultiField.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_Sfc_MultiField.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridStat_fcstGFS_obsGFS_Sfc_MultiField.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_Sfc_MultiField.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_Sfc_MultiField.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_climoNCEP_MultiField.py b/docs/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_climoNCEP_MultiField.py index 4b98a9553..d1e9515b6 100644 --- a/docs/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_climoNCEP_MultiField.py +++ b/docs/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_climoNCEP_MultiField.py @@ -97,11 +97,11 @@ # # 1) Passing in GridStat_fcstGFS_obsGFS_climoNCEP_MultiField.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_climoNCEP_MultiField.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_climoNCEP_MultiField.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridStat_fcstGFS_obsGFS_climoNCEP_MultiField.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_climoNCEP_MultiField.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/GridStat_fcstGFS_obsGFS_climoNCEP_MultiField.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsGDAS_UpperAir_MultiField_PrepBufr.py b/docs/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsGDAS_UpperAir_MultiField_PrepBufr.py index 8d2c3c511..ed55f0055 100644 --- a/docs/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsGDAS_UpperAir_MultiField_PrepBufr.py +++ b/docs/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsGDAS_UpperAir_MultiField_PrepBufr.py @@ -111,11 +111,11 @@ # # 1) Passing in PointStat_fcstGFS_obsGDAS_UpperAir_MultiField_PrepBufr.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsGDAS_UpperAir_MultiField_PrepBufr.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsGDAS_UpperAir_MultiField_PrepBufr.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PointStat_fcstGFS_obsGDAS_UpperAir_MultiField_PrepBufr.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsGDAS_UpperAir_MultiField_PrepBufr.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsGDAS_UpperAir_MultiField_PrepBufr.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsNAM_Sfc_MultiField_PrepBufr.py b/docs/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsNAM_Sfc_MultiField_PrepBufr.py index 2e38c56b6..9efcaa7aa 100644 --- a/docs/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsNAM_Sfc_MultiField_PrepBufr.py +++ b/docs/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsNAM_Sfc_MultiField_PrepBufr.py @@ -110,11 +110,11 @@ # # 1) Passing in PointStat_fcstGFS_obsNAM_Sfc_MultiField_PrepBufr.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsNAM_Sfc_MultiField_PrepBufr.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsNAM_Sfc_MultiField_PrepBufr.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in PointStat_fcstGFS_obsNAM_Sfc_MultiField_PrepBufr.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsNAM_Sfc_MultiField_PrepBufr.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/PointStat_fcstGFS_obsNAM_Sfc_MultiField_PrepBufr.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByInit.py b/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByInit.py index b3a20c76d..bef8a7e20 100644 --- a/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByInit.py +++ b/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByInit.py @@ -117,11 +117,11 @@ # # 1) Passing in TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByInit.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByInit.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByInit.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByInit.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByInit.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByInit.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead.py b/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead.py index 6f55a7fd3..de882f51a 100644 --- a/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead.py +++ b/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead.py @@ -106,12 +106,12 @@ # # 1) Passing in TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead.conf, then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead.conf # -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_IVT.py b/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_IVT.py index d3545da58..a43b4bd1c 100644 --- a/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_IVT.py +++ b/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_IVT.py @@ -170,13 +170,13 @@ # 1) Passing in TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_IVT.conf, # then a user-specific system configuration file:: # -# master_metplus.py \ +# run_metplus.py \ # -c /path/to/METplus/parm/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_IVT.conf \ # -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_IVT.conf:: # -# master_metplus.py \ +# run_metplus.py \ # -c /path/to/METplus/parm/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_IVT.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: diff --git a/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_Multiple_Diagnostics.py b/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_Multiple_Diagnostics.py index d1af94195..bbc0be725 100644 --- a/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_Multiple_Diagnostics.py +++ b/docs/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_Multiple_Diagnostics.py @@ -192,13 +192,13 @@ # 1) Passing in TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_Multiple_Diagnostics.conf, # then a user-specific system configuration file:: # -# master_metplus.py \ +# run_metplus.py \ # -c /path/to/METplus/parm/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_Multiple_Diagnostics.conf \ # -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_Multiple_Diagnostics.conf:: # -# master_metplus.py \ +# run_metplus.py \ # -c /path/to/METplus/parm/use_cases/model_applications/medium_range/TCStat_SeriesAnalysis_fcstGFS_obsGFS_FeatureRelative_SeriesByLead_PyEmbed_IVT.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: diff --git a/docs/use_cases/model_applications/medium_range/UserScript_fcstGEFS_Difficulty_Index.py b/docs/use_cases/model_applications/medium_range/UserScript_fcstGEFS_Difficulty_Index.py index 51a438c36..4a62e0d44 100644 --- a/docs/use_cases/model_applications/medium_range/UserScript_fcstGEFS_Difficulty_Index.py +++ b/docs/use_cases/model_applications/medium_range/UserScript_fcstGEFS_Difficulty_Index.py @@ -121,13 +121,13 @@ # 1) Passing in UserScript_fcstGEFS_Difficulty_Index.conf, # then a user-specific system configuration file:: # -# master_metplus.py \ +# run_metplus.py \ # -c /path/to/METplus/parm/use_cases/model_applications/medium_range/UserScript_fcstGEFS_Difficulty_Index.conf \ # -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in UserScript_fcstGEFS_Difficulty_Index.conf:: # -# master_metplus.py \ +# run_metplus.py \ # -c /path/to/METplus/parm/use_cases/model_applications/medium_range/UserScript_fcstGEFS_Difficulty_Index.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: diff --git a/docs/use_cases/model_applications/precipitation/EnsembleStat_fcstHRRRE_FcstOnly_NetCDF.py b/docs/use_cases/model_applications/precipitation/EnsembleStat_fcstHRRRE_FcstOnly_NetCDF.py index b89316d72..b289a6399 100644 --- a/docs/use_cases/model_applications/precipitation/EnsembleStat_fcstHRRRE_FcstOnly_NetCDF.py +++ b/docs/use_cases/model_applications/precipitation/EnsembleStat_fcstHRRRE_FcstOnly_NetCDF.py @@ -98,11 +98,11 @@ # # 1) Passing in EnsembleStat_fcstHRRRE_FcstOnly_NetCDF.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/EnsembleStat_fcstHRRRE_FcstOnly_NetCDF.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/EnsembleStat_fcstHRRRE_FcstOnly_NetCDF.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in EnsembleStat_fcstHRRRE_FcstOnly_NetCDF.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/EnsembleStat_fcstHRRRE_FcstOnly_NetCDF.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/EnsembleStat_fcstHRRRE_FcstOnly_NetCDF.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/precipitation/EnsembleStat_fcstWOFS_obsWOFS.py b/docs/use_cases/model_applications/precipitation/EnsembleStat_fcstWOFS_obsWOFS.py index 6a2c237df..ae827f10c 100644 --- a/docs/use_cases/model_applications/precipitation/EnsembleStat_fcstWOFS_obsWOFS.py +++ b/docs/use_cases/model_applications/precipitation/EnsembleStat_fcstWOFS_obsWOFS.py @@ -85,11 +85,11 @@ # # 1) Passing in EnsembleStat_fcstWOFS_obsWOFS.py then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/EnsembleStat_fcstWOFS_obsWOFS.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/EnsembleStat_fcstWOFS_obsWOFS.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in EnsembleStat_fcstWOFS_obsWOFS.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/EnsembleStat_fcstWOFS_obsWOFS.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/EnsembleStat_fcstWOFS_obsWOFS.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/precipitation/GridStat_fcstGFS_obsCCPA_GRIB.py b/docs/use_cases/model_applications/precipitation/GridStat_fcstGFS_obsCCPA_GRIB.py index d8d30646e..c31fbf615 100644 --- a/docs/use_cases/model_applications/precipitation/GridStat_fcstGFS_obsCCPA_GRIB.py +++ b/docs/use_cases/model_applications/precipitation/GridStat_fcstGFS_obsCCPA_GRIB.py @@ -84,11 +84,11 @@ # # 1) Passing in GridStat_fcstGFS_obsCCPA_GRIB.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstGFS_obsCCPA_GRIB.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstGFS_obsCCPA_GRIB.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridStat_fcstGFS_obsCCPA_GRIB:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstGFS_obsCCPA_GRIB.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstGFS_obsCCPA_GRIB.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_Gempak.py b/docs/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_Gempak.py index aa89804a8..564acb614 100644 --- a/docs/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_Gempak.py +++ b/docs/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_Gempak.py @@ -105,11 +105,11 @@ # # 1) Passing in GridStat_fcstHREFmean_obsStgIV_Gempak.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_Gempak.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_Gempak.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridStat_fcstHREFmean_obsStgIV_Gempak.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_Gempak.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_Gempak.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_NetCDF.py b/docs/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_NetCDF.py index f526f0103..1ddf93f3a 100644 --- a/docs/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_NetCDF.py +++ b/docs/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_NetCDF.py @@ -86,11 +86,11 @@ # # 1) Passing in GridStat_fcstHREFmean_obsStgIV_NetCDF.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_NetCDF.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_NetCDF.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridStat_fcstHREFmean_obsStgIV_NetCDF.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_NetCDF.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstHREFmean_obsStgIV_NetCDF.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/precipitation/GridStat_fcstHRRR-TLE_obsStgIV_GRIB.py b/docs/use_cases/model_applications/precipitation/GridStat_fcstHRRR-TLE_obsStgIV_GRIB.py index bfc66dc74..5f4eee43e 100644 --- a/docs/use_cases/model_applications/precipitation/GridStat_fcstHRRR-TLE_obsStgIV_GRIB.py +++ b/docs/use_cases/model_applications/precipitation/GridStat_fcstHRRR-TLE_obsStgIV_GRIB.py @@ -98,11 +98,11 @@ # # 1) Passing in GridStat_fcstHRRR-TLE_obsStgIV_GRIB.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstHRRR-TLE_obsStgIV_GRIB.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstHRRR-TLE_obsStgIV_GRIB.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridStat_fcstHRRR-TLE_obsStgIV_GRIB.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstHRRR-TLE_obsStgIV_GRIB.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/GridStat_fcstHRRR-TLE_obsStgIV_GRIB.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_FcstOnly_RevisionSeries_GRIB.py b/docs/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_FcstOnly_RevisionSeries_GRIB.py index 8ad35d7e6..cb8984cad 100644 --- a/docs/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_FcstOnly_RevisionSeries_GRIB.py +++ b/docs/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_FcstOnly_RevisionSeries_GRIB.py @@ -82,11 +82,11 @@ # # 1) Passing in MTD_fcstHRRR-TLE_FcstOnly_RevisionSeries_GRIB.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_FcstOnly_RevisionSeries_GRIB.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_FcstOnly_RevisionSeries_GRIB.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in MTD_fcstHRRR-TLE_FcstOnly_RevisionSeries_GRIB.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_FcstOnly_RevisionSeries_GRIB.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_FcstOnly_RevisionSeries_GRIB.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_obsMRMS.py b/docs/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_obsMRMS.py index 7efc0950f..2d82d4ba6 100644 --- a/docs/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_obsMRMS.py +++ b/docs/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_obsMRMS.py @@ -82,11 +82,11 @@ # # 1) Passing in MTD_fcstHRRR-TLE_obsMRMS.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_obsMRMS.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_obsMRMS.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in MTD_fcstHRRR-TLE_obsMRMS.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_obsMRMS.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/precipitation/MTD_fcstHRRR-TLE_obsMRMS.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/s2s/GridStat_SeriesAnalysis_fcstNMME_obsCPC_seasonal_forecast.py b/docs/use_cases/model_applications/s2s/GridStat_SeriesAnalysis_fcstNMME_obsCPC_seasonal_forecast.py index e006ea7b7..b63ce88ae 100644 --- a/docs/use_cases/model_applications/s2s/GridStat_SeriesAnalysis_fcstNMME_obsCPC_seasonal_forecast.py +++ b/docs/use_cases/model_applications/s2s/GridStat_SeriesAnalysis_fcstNMME_obsCPC_seasonal_forecast.py @@ -208,11 +208,11 @@ # # 1) Passing in GridStat_SeriesAnalysis_fcstNMME_obsCPC_seasonal_forecast.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/s2s/GridStat_SeriesAnalysis_fcstNMME_obsCPC_seasonal_forecast.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/s2s/GridStat_SeriesAnalysis_fcstNMME_obsCPC_seasonal_forecast.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridStat_SeriesAnalysis_fcstNMME_obsCPC_seasonal_forecast.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/s2s/GridStat_SeriesAnalysis_fcstNMME_obsCPC_seasonal_forecast.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/s2s/GridStat_SeriesAnalysis_fcstNMME_obsCPC_seasonal_forecast.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/space_weather/GenVxMask_fcstGloTEC_FcstOnly_solar_altitude.py b/docs/use_cases/model_applications/space_weather/GenVxMask_fcstGloTEC_FcstOnly_solar_altitude.py index 3db36473c..aa514eddf 100644 --- a/docs/use_cases/model_applications/space_weather/GenVxMask_fcstGloTEC_FcstOnly_solar_altitude.py +++ b/docs/use_cases/model_applications/space_weather/GenVxMask_fcstGloTEC_FcstOnly_solar_altitude.py @@ -114,11 +114,11 @@ # # 1) Passing in the use case config file then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/space_weather/GenVxMask_fcstGloTEC_FcstOnly_solar_altitude.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/space_weather/GenVxMask_fcstGloTEC_FcstOnly_solar_altitude.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in the use case config file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/space_weather/GenVxMask_fcstGloTEC_FcstOnly_solar_altitude.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/space_weather/GenVxMask_fcstGloTEC_FcstOnly_solar_altitude.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/space_weather/GridStat_fcstGloTEC_obsGloTEC_vx7.py b/docs/use_cases/model_applications/space_weather/GridStat_fcstGloTEC_obsGloTEC_vx7.py index ca697d511..49d62497e 100644 --- a/docs/use_cases/model_applications/space_weather/GridStat_fcstGloTEC_obsGloTEC_vx7.py +++ b/docs/use_cases/model_applications/space_weather/GridStat_fcstGloTEC_obsGloTEC_vx7.py @@ -123,11 +123,11 @@ # # 1) Passing in GridStat_fcstGloTEC_obsGloTEC_vx7.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/space_weather/GridStat_fcstGloTEC_obsGloTEC_vx7.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/space_weather/GridStat_fcstGloTEC_obsGloTEC_vx7.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in GridStat_fcstGloTEC_obsGloTEC_vx7.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/space_weather/GridStat_fcstGloTEC_obsGloTEC_vx7.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/space_weather/GridStat_fcstGloTEC_obsGloTEC_vx7.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_ExtraTC.py b/docs/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_ExtraTC.py index b3a708917..39de53489 100644 --- a/docs/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_ExtraTC.py +++ b/docs/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_ExtraTC.py @@ -77,11 +77,11 @@ # # 1) Passing in Plotter_fcstGFS_obsGFS_ExtraTC.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_ExtraTC.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_ExtraTC.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in Plotter_fcstGFS_obsGFS_ExtraTC.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_ExtraTC.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_ExtraTC.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_RPlotting.py b/docs/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_RPlotting.py index 80b0e4dc8..11d51a11e 100644 --- a/docs/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_RPlotting.py +++ b/docs/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_RPlotting.py @@ -92,11 +92,11 @@ # # 1) Passing in Plotter_fcstGFS_obsGFS_RPlotting.conf then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_RPlotting.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_RPlotting.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in Plotter_fcstGFS_obsGFS_RPlotting.conf:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_RPlotting.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/tc_and_extra_tc/Plotter_fcstGFS_obsGFS_RPlotting.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/docs/use_cases/model_applications/tc_and_extra_tc/TCRMW_fcstGFS_fcstOnly_gonzalo.py b/docs/use_cases/model_applications/tc_and_extra_tc/TCRMW_fcstGFS_fcstOnly_gonzalo.py index 0475ccd69..20cd94ee7 100644 --- a/docs/use_cases/model_applications/tc_and_extra_tc/TCRMW_fcstGFS_fcstOnly_gonzalo.py +++ b/docs/use_cases/model_applications/tc_and_extra_tc/TCRMW_fcstGFS_fcstOnly_gonzalo.py @@ -72,11 +72,11 @@ # # 1) Passing in the use case configuration file then a user-specific system configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/model_applications/tc_and_extra_tc/TCRMW_fcstGFS_fcstOnly_gonzalo.conf -c /path/to/user_system.conf +# run_metplus.py -c /path/to/METplus/parm/model_applications/tc_and_extra_tc/TCRMW_fcstGFS_fcstOnly_gonzalo.conf -c /path/to/user_system.conf # # 2) Modifying the configurations in parm/metplus_config, then passing in use case configuration file:: # -# master_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/tc_and_extra_tc/TCRMW_fcstGFS_fcstOnly_gonzalo.conf +# run_metplus.py -c /path/to/METplus/parm/use_cases/model_applications/tc_and_extra_tc/TCRMW_fcstGFS_fcstOnly_gonzalo.conf # # The former method is recommended. Whether you add them to a user-specific configuration file or modify the metplus_config files, the following variables must be set correctly: # diff --git a/internal_tests/pytests/logging/test_logging.py b/internal_tests/pytests/logging/test_logging.py index 9a2abefde..7e31851c3 100644 --- a/internal_tests/pytests/logging/test_logging.py +++ b/internal_tests/pytests/logging/test_logging.py @@ -43,12 +43,12 @@ def test_logdir_exists(metplus_config): config = metplus_config() log_dir = config.get('config', 'LOG_DIR') # Verify that a logfile exists in the log dir, with a filename - # like {LOG_DIR}/master_metplus.YYYYMMDD.log + # like {LOG_DIR}/metplus.YYYYMMDD.log assert os.path.exists(log_dir) def test_logfile_exists(metplus_config): - # Verify that a logfile with format master_metplus.log exists + # Verify that a logfile with format metplus.log exists # We are assuming that there can be numerous files in the log directory. config = metplus_config() log_dir = config.get('config', 'LOG_DIR') @@ -56,7 +56,7 @@ def test_logfile_exists(metplus_config): if os.path.exists(log_dir): found = False for f in os.listdir(log_dir): - match = re.match(r'master_metplus.log', f) + match = re.match(r'metplus.log', f) if match: # Check all files, first file may not be master log assert match.group(0) diff --git a/internal_tests/pytests/minimum_pytest.conf b/internal_tests/pytests/minimum_pytest.conf index 5cb9dd1e4..d7bf43014 100644 --- a/internal_tests/pytests/minimum_pytest.conf +++ b/internal_tests/pytests/minimum_pytest.conf @@ -12,5 +12,5 @@ LOG_ERR_LINE_FORMAT = {LOG_LINE_FORMAT} LOG_DEBUG_LINE_FORMAT = {LOG_LINE_FORMAT} LOG_INFO_LINE_FORMAT = {LOG_LINE_FORMAT} -LOG_METPLUS = {LOG_DIR}/master_metplus.log +LOG_METPLUS = {LOG_DIR}/metplus.log LOG_TIMESTAMP_TEMPLATE = diff --git a/internal_tests/pytests/plotting/make_plots/test_make_plots_wrapper.py b/internal_tests/pytests/plotting/make_plots/test_make_plots_wrapper.py index 46347c67c..c6ac5e1b9 100644 --- a/internal_tests/pytests/plotting/make_plots/test_make_plots_wrapper.py +++ b/internal_tests/pytests/plotting/make_plots/test_make_plots_wrapper.py @@ -154,4 +154,4 @@ def test_create_c_dict(metplus_config): assert(c_dict['VERIF_GRID'] == 'G002') assert(c_dict['EVENT_EQUALIZATION'] == 'False') assert(c_dict['LOG_METPLUS'] == mp.config.getdir('OUTPUT_BASE') - +'/logs/master_metplus.log') + +'/logs/metplus.log') diff --git a/internal_tests/pytests/produtil/README b/internal_tests/pytests/produtil/README index eacc222ba..540ba31e6 100644 --- a/internal_tests/pytests/produtil/README +++ b/internal_tests/pytests/produtil/README @@ -7,7 +7,7 @@ To run the test: 2) open the test_produtil.py file and replace the '/path/to' with the full path to the directory where your produtil_test.conf file resides (this will be in METplus/internal_tests/pytest/produtil). -NOTE: This is necessary, as we are NOT using master_metplus.py to begin the process of reading in the config +NOTE: This is necessary, as we are NOT using run_metplus.py to begin the process of reading in the config file, test_produtil.conf diff --git a/internal_tests/use_cases/system.conf b/internal_tests/use_cases/system.conf index 4f7e94b2a..0a435190a 100644 --- a/internal_tests/use_cases/system.conf +++ b/internal_tests/use_cases/system.conf @@ -12,7 +12,7 @@ LOG_ERR_LINE_FORMAT = {LOG_LINE_FORMAT} LOG_DEBUG_LINE_FORMAT = {LOG_LINE_FORMAT} LOG_INFO_LINE_FORMAT = {LOG_LINE_FORMAT} -LOG_METPLUS = {LOG_DIR}/master_metplus.log +LOG_METPLUS = {LOG_DIR}/metplus.log LOG_TIMESTAMP_TEMPLATE = [exe] diff --git a/internal_tests/use_cases/test_use_cases.py b/internal_tests/use_cases/test_use_cases.py index ef773c3aa..f70bcfeb2 100644 --- a/internal_tests/use_cases/test_use_cases.py +++ b/internal_tests/use_cases/test_use_cases.py @@ -55,7 +55,7 @@ def run_test_use_case(param, test_metplus_base): out_dir = os.path.join(output_base, os.path.basename(param_files[-2])) - cmd = os.path.join(test_metplus_base, "ush", "master_metplus.py") + cmd = os.path.join(test_metplus_base, "ush", "run_metplus.py") use_case_name = None for parm in params: if parm.startswith('config.USE_CASE_NAME'): diff --git a/metplus/util/met_util.py b/metplus/util/met_util.py index 7dba841d3..e71b5723c 100644 --- a/metplus/util/met_util.py +++ b/metplus/util/met_util.py @@ -2222,7 +2222,7 @@ def parse_var_list(config, time_info=None, data_type=None, met_tool=None): list of dictionaries with variable information """ - # validate configs again in case wrapper is not running from master_metplus + # validate configs again in case wrapper is not running from run_metplus # this does not need to be done if parsing a specific data type, i.e. ENS or FCST if data_type is None: if not validate_field_info_configs(config)[0]: diff --git a/metplus/util/metplus_check.py b/metplus/util/metplus_check.py index 5261fb85b..a9e46eb35 100755 --- a/metplus/util/metplus_check.py +++ b/metplus/util/metplus_check.py @@ -11,7 +11,7 @@ def metplus_check_python_version(user_py, supported_py): """!Test that the user's version of python is equal of higher than the - the supported version of python. Imported in each wrapper and master_metplus + the supported version of python. Imported in each wrapper and run_metplus to avoid confusing failures if the user's version is not current. Note: SyntaxError from using f-strings (available in 3.6+) in earlier versions of Python are output before the output from this function can be displayed. diff --git a/metplus/wrappers/command_builder.py b/metplus/wrappers/command_builder.py index 258103b86..17820c537 100755 --- a/metplus/wrappers/command_builder.py +++ b/metplus/wrappers/command_builder.py @@ -1282,7 +1282,7 @@ def run_command(self, cmd): logfile_path = self.config.getstr('config', 'LOG_METPLUS') # if MET output is written to its own logfile, get that filename if not self.config.getbool('config', 'LOG_MET_OUTPUT_TO_METPLUS'): - logfile_path = logfile_path.replace('master_metplus', + logfile_path = logfile_path.replace('run_metplus', log_name) self.log_error("MET command returned a non-zero return code:" diff --git a/metplus/wrappers/tc_stat_wrapper.py b/metplus/wrappers/tc_stat_wrapper.py index af5d77c70..065275a64 100755 --- a/metplus/wrappers/tc_stat_wrapper.py +++ b/metplus/wrappers/tc_stat_wrapper.py @@ -208,7 +208,7 @@ def set_met_config_for_environment_variables(self): def run_at_time(self, input_dict=None): """! Builds the call to the MET tool TC-STAT for all requested - initialization times (init or valid). Called from master_metplus + initialization times (init or valid). Called from run_metplus """ self.logger.info('Starting tc_stat_wrapper...') diff --git a/metplus/wrappers/usage_wrapper.py b/metplus/wrappers/usage_wrapper.py index 4fdc2f435..cd150d501 100644 --- a/metplus/wrappers/usage_wrapper.py +++ b/metplus/wrappers/usage_wrapper.py @@ -1,5 +1,5 @@ # @namespace UsageWrapper -# @brief Provides a default process for master_metplus.py. Indicates what +# @brief Provides a default process for run_metplus.py. Indicates what # processes are currently available. # @endcode# @@ -24,8 +24,8 @@ def run_all_times(self): print("USAGE: This text is displayed when [config] PROCESS_LIST = Usage.\n" "Pass in a configuration file (with -c or --config) that overrides [config] PROCESS_LIST " "to run other processes. For example:\n\n" - "master_metplus.py -c parm/use_cases/met_tool_wrapper/GridStat/GridStat.conf\n\nor\n\n" - "master_metplus.py --config parm/use_cases/model_applications/precipitation/GridStat_fcstHRRR-TLE_obsStgIV_GRIB.conf\n\n" + "run_metplus.py -c parm/use_cases/met_tool_wrapper/GridStat/GridStat.conf\n\nor\n\n" + "run_metplus.py --config parm/use_cases/model_applications/precipitation/GridStat_fcstHRRR-TLE_obsStgIV_GRIB.conf\n\n" "Possible processes: ") for process in self.available_processes: print(" - {}".format(process)) diff --git a/parm/metplus_config/metplus_logging.conf b/parm/metplus_config/metplus_logging.conf index b564c2379..04b4a75c5 100644 --- a/parm/metplus_config/metplus_logging.conf +++ b/parm/metplus_config/metplus_logging.conf @@ -50,9 +50,7 @@ # LOG_METPLUS, If defined, The value is expanded in the final conf file. # For example if set as, -# LOG_METPLUS = {LOG_DIR}/master_metplus.log.{LOG_TIMESTAMP_TEMPLATE} -# In the final conf it will be expanded and set as, -# LOG_METPLUS = /Users/projects/pytmp/logs/master_metplus.log.20180411 +# LOG_METPLUS = {LOG_DIR}/metplus.log.{LOG_TIMESTAMP_TEMPLATE} # LOG_METPLUS is also the controlling ON/OFF switch for logging. @@ -73,12 +71,8 @@ LOG_DIR = {OUTPUT_BASE}/logs # You must use LOG_TIMESTAMP_TEMPLATE, IF you want to add a timestamp, # and NOT ANY % directives directly, else they are interpreted as literals. # To Turn OFF ALL Logging, no log files, Don't define or set LOG_METPLUS = -# Valid usage examples -# LOG_METPLUS = -# LOG_METPLUS = {LOG_DIR}/master_metplus.log -# LOG_METPLUS = {LOG_DIR}/master_metplus.log.{LOG_TIMESTAMP_TEMPLATE} -LOG_METPLUS = {LOG_DIR}/master_metplus.log.{LOG_TIMESTAMP_TEMPLATE} +LOG_METPLUS = {LOG_DIR}/metplus.log.{LOG_TIMESTAMP_TEMPLATE} # LOG_TIMESTAMP_TEMPLATE, - has specific requirements and usage. # It Can be used when setting LOG_METPLUS. diff --git a/parm/metplus_config/metplus_runtime.conf b/parm/metplus_config/metplus_runtime.conf index 6e60a2317..53151d104 100644 --- a/parm/metplus_config/metplus_runtime.conf +++ b/parm/metplus_config/metplus_runtime.conf @@ -45,7 +45,7 @@ LOOP_ORDER = processes -## Processes to run in master script (master_metplus.py) +## Processes to run in script (run_metplus.py) PROCESS_LIST = Usage # LOOP_BY diff --git a/parm/use_cases/met_tool_wrapper/PointStat/PointStat.conf b/parm/use_cases/met_tool_wrapper/PointStat/PointStat.conf index 806a41f18..25b193aee 100644 --- a/parm/use_cases/met_tool_wrapper/PointStat/PointStat.conf +++ b/parm/use_cases/met_tool_wrapper/PointStat/PointStat.conf @@ -46,7 +46,7 @@ LOOP_ORDER = processes # Location of MET config file to pass to GridStat # References PARM_BASE which is the location of the parm directory corresponding -# to the ush directory of the master_metplus.py script that is called +# to the ush directory of the run_metplus.py script that is called # or the value of the environment variable METPLUS_PARM_BASE if set POINT_STAT_CONFIG_FILE ={PARM_BASE}/met_config/PointStatConfig_wrapped diff --git a/parm/use_cases/met_tool_wrapper/PointStat/PointStat_once_per_field.conf b/parm/use_cases/met_tool_wrapper/PointStat/PointStat_once_per_field.conf index 2cb6406f3..549967465 100644 --- a/parm/use_cases/met_tool_wrapper/PointStat/PointStat_once_per_field.conf +++ b/parm/use_cases/met_tool_wrapper/PointStat/PointStat_once_per_field.conf @@ -46,7 +46,7 @@ LOOP_ORDER = processes # Location of MET config file to pass to GridStat # References PARM_BASE which is the location of the parm directory corresponding -# to the ush directory of the master_metplus.py script that is called +# to the ush directory of the run_metplus.py script that is called # or the value of the environment variable METPLUS_PARM_BASE if set POINT_STAT_CONFIG_FILE ={PARM_BASE}/met_config/PointStatConfig_wrapped diff --git a/ush/master_metplus.py b/ush/master_metplus.py deleted file mode 100755 index cbc78b5e4..000000000 --- a/ush/master_metplus.py +++ /dev/null @@ -1,123 +0,0 @@ -#!/usr/bin/env python3 - -""" -Program Name: master_metplus.py -Contact(s): George McCabe, Julie Prestopnik, Jim Frimel, Minna Win -Abstract: Runs METplus Wrappers scripts -History Log: Initial version -Usage: -Parameters: None -Input Files: -Output Files: -Condition codes: -Developer Note: Please do not use f-strings in this file so that the - Python version check can notify the user of the incorrect version. - Using Python 3.5 or earlier will output the SyntaxError from the - f-string instead of the useful error message. -""" - -import os -import sys - -# add metplus directory to path so the wrappers and utilities can be found -sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), - os.pardir))) - -import produtil.setup - -from metplus.util import metplus_check -from metplus.util import pre_run_setup, run_metplus, post_run_cleanup -from metplus.util import get_process_list -from metplus import __version__ as metplus_version - -'''!@namespace master_metplus -Main script the processes all the tasks in the PROCESS_LIST -''' - -def main(): - """!Main program. - Master METplus script that invokes the necessary Python scripts - to perform various activities, such as series analysis.""" - - config_inputs = get_config_inputs_from_command_line() - config = pre_run_setup(config_inputs) - - # Use config object to get the list of processes to call - process_list = get_process_list(config) - - total_errors = run_metplus(config, process_list) - - post_run_cleanup(config, 'METplus', total_errors) - -def usage(): - """! How to call this script. - """ - - filename = os.path.basename(__file__) - - print (''' -Usage: %s arg1 arg2 arg3 - -h|--help Display this usage statement - -Arguments: -/path/to/parmfile.conf -- Specify custom configuration file to use -section.option=value -- override conf options on the command line - -'''%(filename)) - sys.exit(2) - -def get_config_inputs_from_command_line(): - """! Read command line arguments. Pull out configuration - files and configuration variable overrides. Display - usage statement if invalid configuration or if help - statement is requested, i.e. -h. Report error if - invalid flag was provided, i.e. -a. - @returns list of config inputs - """ - - # output version that is run to screen - print('Running METplus %s' % metplus_version) - - # if not arguments were provided, print usage and exit - if len(sys.argv) < 2: - usage() - - # print usage statement and exit if help arg is found - help_args = ('-h', '--help', '-help') - for help_arg in help_args: - if help_arg in sys.argv: - usage() - sys.exit(0) - - # pull out command line arguments - config_inputs = [] - for arg in sys.argv[1:]: - if arg.startswith('-'): - # ignore -c and --config since they are now optional - if arg == '-c' or arg == '--config' or arg == '-config': - continue - - # error/exit if an argument that is not supported was used - print('ERROR: Invalid argument: %s.' % arg) - usage() - - # split up comma separated lists into individual items - # and add each to list of arguments - # NOTE: to support lists in a config variable override, - # this logic will have to be enhanced - # i.e. config.PROCESS_LIST=PCPCombine,GridStat - config_inputs.extend(arg.split(',')) - - # if no valid config_inputs were found, print usage and exit - if not config_inputs: - usage() - - return config_inputs - -if __name__ == "__main__": - try: - produtil.setup.setup(send_dbn=False, jobname='run-METplus') - main() - except Exception as exc: - print('ERROR: master_metplus failed: %s' % exc) - sys.exit(2) diff --git a/ush/master_metplus.py b/ush/master_metplus.py new file mode 120000 index 000000000..ffbf916c4 --- /dev/null +++ b/ush/master_metplus.py @@ -0,0 +1 @@ +run_metplus.py \ No newline at end of file diff --git a/ush/run_metplus.py b/ush/run_metplus.py new file mode 100755 index 000000000..ecb0686ed --- /dev/null +++ b/ush/run_metplus.py @@ -0,0 +1,130 @@ +#!/usr/bin/env python3 + +""" +Program Name: run_metplus.py +Contact(s): George McCabe, Julie Prestopnik, Jim Frimel, Minna Win +Abstract: Runs METplus Wrappers scripts +History Log: Initial version +Usage: +Parameters: None +Input Files: +Output Files: +Condition codes: +Developer Note: Please do not use f-strings in this file so that the + Python version check can notify the user of the incorrect version. + Using Python 3.5 or earlier will output the SyntaxError from the + f-string instead of the useful error message. +""" + +import os +import sys + +# add metplus directory to path so the wrappers and utilities can be found +sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), + os.pardir))) + +import produtil.setup + +from metplus.util import metplus_check +from metplus.util import pre_run_setup, run_metplus, post_run_cleanup +from metplus.util import get_process_list +from metplus import __version__ as metplus_version + +'''!@namespace run_metplus +Main script the processes all the tasks in the PROCESS_LIST +''' + +def main(): + """!Main program. + METplus script that invokes the necessary Python scripts + to perform various activities, such as series analysis.""" + + config_inputs = get_config_inputs_from_command_line() + config = pre_run_setup(config_inputs) + + # warn if calling master_metplus.py + script_name = os.path.basename(__file__) + if script_name == 'master_metplus.py': + msg = ("master_metplus.py has been renamed to run_metplus.py. " + "This script name will be removed in a future version.") + config.logger.warning(msg) + + # Use config object to get the list of processes to call + process_list = get_process_list(config) + + total_errors = run_metplus(config, process_list) + + post_run_cleanup(config, 'METplus', total_errors) + +def usage(): + """! How to call this script. + """ + + filename = os.path.basename(__file__) + + print (''' +Usage: %s arg1 arg2 arg3 + -h|--help Display this usage statement + +Arguments: +/path/to/parmfile.conf -- Specify custom configuration file to use +section.option=value -- override conf options on the command line + +'''%(filename)) + sys.exit(2) + +def get_config_inputs_from_command_line(): + """! Read command line arguments. Pull out configuration + files and configuration variable overrides. Display + usage statement if invalid configuration or if help + statement is requested, i.e. -h. Report error if + invalid flag was provided, i.e. -a. + @returns list of config inputs + """ + + # output version that is run to screen + print('Running METplus %s' % metplus_version) + + # if not arguments were provided, print usage and exit + if len(sys.argv) < 2: + usage() + + # print usage statement and exit if help arg is found + help_args = ('-h', '--help', '-help') + for help_arg in help_args: + if help_arg in sys.argv: + usage() + sys.exit(0) + + # pull out command line arguments + config_inputs = [] + for arg in sys.argv[1:]: + if arg.startswith('-'): + # ignore -c and --config since they are now optional + if arg == '-c' or arg == '--config' or arg == '-config': + continue + + # error/exit if an argument that is not supported was used + print('ERROR: Invalid argument: %s.' % arg) + usage() + + # split up comma separated lists into individual items + # and add each to list of arguments + # NOTE: to support lists in a config variable override, + # this logic will have to be enhanced + # i.e. config.PROCESS_LIST=PCPCombine,GridStat + config_inputs.extend(arg.split(',')) + + # if no valid config_inputs were found, print usage and exit + if not config_inputs: + usage() + + return config_inputs + +if __name__ == "__main__": + try: + produtil.setup.setup(send_dbn=False, jobname='run-METplus') + main() + except Exception as exc: + print('ERROR: run_metplus failed: %s' % exc) + sys.exit(2) diff --git a/ush/ush.dox b/ush/ush.dox index e36c6bfb9..8c54921c2 100644 --- a/ush/ush.dox +++ b/ush/ush.dox @@ -7,7 +7,7 @@ wrapping the MET tools suite. #### Utility scripts of general interest: -* master_metplus --- This is the main script that calls all the +* run_metplus --- This is the main script that calls all the tasks in the PROCESS_LIST. diff --git a/ush/validate_config.py b/ush/validate_config.py index 736d6d9e0..bdc54beb9 100755 --- a/ush/validate_config.py +++ b/ush/validate_config.py @@ -7,7 +7,7 @@ Prompts user with the changes that will be made and asks if they want to have the changes made for them. History Log: Initial version -Usage: Call the same as master_metplus.py, +Usage: Call the same as run_metplus.py, i.e. validate_config.py -c -c Parameters: None Input Files: Configuration files @@ -25,7 +25,7 @@ os.pardir))) from metplus.util import config_metplus, validate_configuration_variables -from master_metplus import get_config_inputs_from_command_line +from run_metplus import get_config_inputs_from_command_line def main(): config_inputs = get_config_inputs_from_command_line()