Removal of Content Advisory - April 2024

Advisory to Numerical Weather Prediction (NWP) containers users: As of the beginning of April 2024, all support assets for Numerical Weather Prediction (NWP) containers will be removed from the DTC website. Users should download all reference materials of interest prior to April 2024.

NWP Containers Online Tutorial | Initialization and Verification Data > Derecho data

For the derecho case example, Global Forecast System (GFS) forecast files initialized at 12 UTC on 20120629 out 24 hours in 3-hr increments are provided. Prepbufr files from the North American Data Assimilation System (NDAS) are provided for point verification and data assimilation, and Stage II precipitation analyses are included for gridded verification purposes.

There are two options for establishing the image from which the data container will be instantiated:

  1. Pull the image from Docker Hub
  2. Build the image from scratch

Please follow the appropriate section below that fits your needs.

Option 1: Pull the prebuilt dtcenter/derecho image

If you do not want to build the image from scratch, simply use the prebuilt image by pulling it from Docker Hub.

cd ${PROJ_DIR}
docker pull dtcenter/derecho

To instantiate the case data container, type the following:

docker create -v /data/derecho_20120629 --name derecho dtcenter/derecho

To see what images you have available on your system, type:

docker images

To see what containers you have running on your system, type:

docker ps -a

Option 2: Build the dtcenter/derecho image from scratch

To access the model initialization data for the Derecho case from the Git repository and build it from scratch, first go to your project space where you cloned the repository:

cd ${PROJ_DIR}/container-dtc-nwp/components

and then build an image called dtcenter/derecho:

cd case_data/derecho_20120629 ; docker build -t dtcenter/derecho . ; cd ../..

This command goes into the case_data/derecho_20120629 directory and reads the Dockerfile directives. Please review the contents of the case_data/derecho_20120629/Dockerfile for additional information.

To instantiate the case data container, type the following:

docker create -v /data/derecho_20120629 --name derecho dtcenter/derecho

To see what images you have available on your system, type:

docker images

To see what containers you have running on your system, type:

docker ps -a