Skip to content

Home

About wrfplot

wrfplot is a Command Line application, written in Python programming language, to plot a set of diagnostic forecast variables from the Weather Research and Forecasting (WRF) atmospheric model output file. Though, WRF model output files are ust a NetCDF file, it requires one to install various software and libraries to plot a single variable. Python has many modules that can deal with WRF model output data set. However, setting up these libraries, plotting variables through reading a lot of documentation is a tedious process. wrfplot aims to fill this gap by proving an application that is straightforward to install and use.

The idea of developing wrfplot came to my mind as I frequently revisit the same code base again and again to tweak a few lines of code to get changes in final plots. Therefore, I was looking for a command line application that would help me to generate a common WRF model forecast images by providing appropriate command line options. I could not find any and hence created one.

Use Cases

A typical use case of wrfplot would be to include as part of your WRF model run framework to plotting of variables immediately after the model run is completed. The other use case would be to use it for producing publication quality 2D maps that have little tweaking for your publication.

Note

wrfplot is a new application. If you find any issues related to plotting variables or documentation, please open an issue in Github as given in Support secion.

The best way to explore the application is to read and execute the extensive examples provided in usage section.

For complete list of options, execute the following command in the terminal or cmd window:

wrfplot --help

Source Code

wrfplot is an Open Source application and released under General Public License (GPL) Version 3. The source code of the application can be found at https://github.com/wxguy/wrfplot.