wrf-python icon indicating copy to clipboard operation
wrf-python copied to clipboard

A collection of diagnostic and interpolation routines for use with output from the Weather Research and Forecasting (WRF-ARW) Model.

Results 91 wrf-python issues
Sort by recently updated
recently updated
newest added

## Background Hi, all, I'm trying to plot the wind quiver on the crosssection. But, I find the wind direction is wrong. Here're the details. ## Read data and vertcross...

support

I am testing wrf-python by running example plot of wind at 500 hPa. I am getting a blank plot I guess related to naturalearth map download. Downloading: https://naturalearth.s3.amazonaws.com/50m_cultural/ne_50m_admin_1_states_provinces_shp.zip warnings.warn(f'Downloading: {url}',...

I want to plot relative humidity for a particular (lat, long) with time on x axis and pressure level on Y axis how can I plot it in WRF-python from...

Seen a couple issues with people asking for Apple M1 support, but to correctly name the problem: the library won't build on the aarch64/arm64 architecture. We encountered pretty much this...

Greetings, I've been attempting to use WRF-Python recently to compute diagnostic variables from WRF output in netCDF4 format. However, as things currently stand, it is not clear how the getvar...

enhancement

1. I did not report any errors when executing the following code in the installation tutorial: cd ./fortran/build_help gfortran -o sizes -fopenmp omp_sizes.f90 python sub_sizes.py cd .. gfortran -E ompgen.F90...

Hello, I am new user in weather research and forecasting model. I recently find wrf-python library and want to get some information in details. 1. Is the wrf-python possible to...

Hi, I recently used wrf.interplevel to interpolate a 3d field onto a single pressure level 50000 Pa. I found a very wired result that every time when the 50000 Pa...

I found that using `wrf.getvar` to get variables is quite slow. For example ```python import time import wrf import netCDF4 as nc wrfout = nc.Dataset(wrfout_file) t0 = time.time() SINALPHA_WRF =...

I noticed that using the `wrf.omp_set_num_threads`function with `cache` could speed up the process of `getvar` from [this page](https://wrf-python.readthedocs.io/en/latest/basic_usage.html#the-cache-argument-for-wrf-getvar). However, in my case, `wrf.omp_get_num_procs()=128` ,(64 CPU cores (128 total threads)), I...