diff --git a/docs/Users_Guide/matthewjetstream.rst b/docs/Users_Guide/matthewjetstream.rst index 58e868b..e3402cb 100644 --- a/docs/Users_Guide/matthewjetstream.rst +++ b/docs/Users_Guide/matthewjetstream.rst @@ -181,12 +181,13 @@ make sure that we refer to the same resource names and file paths wherever they Copy and paste the definitions below into your shell to define the variables before proceeding:: WRF_IMAGE=ncar/iwrf:latest - METPLUS_IMAGE=dtcenter/metplus-dev:develop + METPLUS_IMAGE=ncar/iwrf:metplus-latest WORKING_DIR=/home/exouser WRF_DIR=${WORKING_DIR}/wrf/20161006_00 METPLUS_DIR=${WORKING_DIR}/metplus WRF_CONFIG_DIR=${WORKING_DIR}/i-wrf/use_cases/Hurricane_Matthew/WRF METPLUS_CONFIG_DIR=${WORKING_DIR}/i-wrf/use_cases/Hurricane_Matthew/METplus + PLOT_SCRIPT_DIR=${WORKING_DIR}/i-wrf/use_cases/Hurricane_Matthew/Visualization OBS_DATA_VOL=data-matthew-input-obs Any time you open a new shell on your instance, you will need to perform this action @@ -351,12 +352,17 @@ Run METplus After the WRF simulation has finished, you can run the METplus verification to compare the simulated results to the actual weather observations during the hurricane. The verification takes about five minutes to complete. -We use command line options to tell the METplus container several things, including where the observed data is located, -where the METplus configuration can be found, where the WRF output data is located, and where it should create its output files:: +We use command line options to tell the METplus container several things, +including where the observed data is located, +where the METplus configuration can be found, +where the plotting scripts can be found, +where the WRF output data is located, +and where it should create its output files:: docker run --rm -it \ --volumes-from ${OBS_DATA_VOL} \ -v ${METPLUS_CONFIG_DIR}:/config \ + -v ${PLOT_SCRIPT_DIR}:/plot_scripts \ -v ${WORKING_DIR}/wrf:/data/input/wrf \ -v ${METPLUS_DIR}:/data/output ${METPLUS_IMAGE} \ /metplus/METplus/ush/run_metplus.py /config/PointStat_matthew.conf diff --git a/docs/Users_Guide/matthewredcloud.rst b/docs/Users_Guide/matthewredcloud.rst index 78b850f..bb26fa1 100644 --- a/docs/Users_Guide/matthewredcloud.rst +++ b/docs/Users_Guide/matthewredcloud.rst @@ -187,12 +187,13 @@ make sure that we refer to the same resource names and file paths wherever they Copy and paste the definitions below into your shell to define the variables before proceeding:: WRF_IMAGE=ncar/iwrf:latest - METPLUS_IMAGE=dtcenter/metplus-dev:develop + METPLUS_IMAGE=ncar/iwrf:metplus-latest WORKING_DIR=/home/ubuntu WRF_DIR=${WORKING_DIR}/wrf/20161006_00 METPLUS_DIR=${WORKING_DIR}/metplus WRF_CONFIG_DIR=${WORKING_DIR}/i-wrf/use_cases/Hurricane_Matthew/WRF METPLUS_CONFIG_DIR=${WORKING_DIR}/i-wrf/use_cases/Hurricane_Matthew/METplus + PLOT_SCRIPT_DIR=${WORKING_DIR}/i-wrf/use_cases/Hurricane_Matthew/Visualization OBS_DATA_VOL=data-matthew-input-obs Any time you open a new shell on your instance, you will need to perform this action @@ -357,12 +358,17 @@ Run METplus After the WRF simulation has finished, you can run the METplus verification to compare the simulated results to the actual weather observations during the hurricane. The verification takes about five minutes to complete. -We use command line options to tell the METplus container several things, including where the observed data is located, -where the METplus configuration can be found, where the WRF output data is located, and where it should create its output files:: +We use command line options to tell the METplus container several things, +including where the observed data is located, +where the METplus configuration can be found, +where the plotting scripts can be found, +where the WRF output data is located, +and where it should create its output files:: sudo docker run --rm -it \ --volumes-from ${OBS_DATA_VOL} \ -v ${METPLUS_CONFIG_DIR}:/config \ + -v ${PLOT_SCRIPT_DIR}:/plot_scripts \ -v ${WORKING_DIR}/wrf:/data/input/wrf \ -v ${METPLUS_DIR}:/data/output ${METPLUS_IMAGE} \ /metplus/METplus/ush/run_metplus.py /config/PointStat_matthew.conf diff --git a/docs/Users_Guide/matthewwindows.rst b/docs/Users_Guide/matthewwindows.rst index c0a7266..84958e5 100644 --- a/docs/Users_Guide/matthewwindows.rst +++ b/docs/Users_Guide/matthewwindows.rst @@ -62,11 +62,12 @@ or changes the path entirely to use a different location on your computer:: Now you can copy and paste the definitions below into your shell to define the other variables before proceeding:: set WRF_IMAGE=ncar/iwrf:latest - set METPLUS_IMAGE=dtcenter/metplus-dev:develop + set METPLUS_IMAGE=ncar/iwrf:metplus-latest set WRF_DIR=%WORKING_DIR%\wrf\20161006_00 set METPLUS_DIR=%WORKING_DIR%\metplus set WRF_CONFIG_DIR=%WORKING_DIR%\i-wrf-main\use_cases\Hurricane_Matthew\WRF set METPLUS_CONFIG_DIR=%WORKING_DIR%\i-wrf-main\use_cases\Hurricane_Matthew\METplus + set PLOT_SCRIPT_DIR=%WORKING_DIR%\i-wrf-main\use_cases\Hurricane_Matthew\Visualization set OBS_DATA_VOL=data-matthew-input-obs Any time you open a new shell on your instance, you will need to perform this action @@ -240,12 +241,17 @@ Run METplus After the WRF simulation has finished, you can run the METplus verification to compare the simulated results to the actual weather observations during the hurricane. The verification takes about five minutes to complete. -We use command line options to tell the METplus container several things, including where the observed data is located, -where the METplus configuration can be found, where the WRF output data is located, and where it should create its output files:: +We use command line options to tell the METplus container several things, +including where the observed data is located, +where the METplus configuration can be found, +where the plotting scripts can be found, +where the WRF output data is located, +and where it should create its output files:: docker run --rm -it ^ --volumes-from %OBS_DATA_VOL% ^ -v %METPLUS_CONFIG_DIR%:/config ^ + -v %PLOT_SCRIPT_DIR%:/plot_scripts ^ -v %WORKING_DIR%\wrf:/data/input/wrf ^ -v %METPLUS_DIR%:/data/output %METPLUS_IMAGE% ^ /metplus/METplus/ush/run_metplus.py /config/PointStat_matthew.conf