├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ └── pypi.yaml ├── .gitignore ├── .readthedocs.yml ├── CITATION.cff ├── CMakeLists.txt ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── chey_intel.py ├── doc ├── Makefile ├── make.bat └── source │ ├── _static │ └── images │ │ ├── basemap_500.png │ │ ├── basemap_front.png │ │ ├── basemap_slp.png │ │ ├── cartopy_500.png │ │ ├── cartopy_cross.png │ │ ├── cartopy_slp.png │ │ ├── cross_mtns.png │ │ ├── matthew.png │ │ ├── matthew_cross.png │ │ └── nsf.png │ ├── _templates │ ├── product_table.txt │ ├── subproducts.txt │ └── wrf_class.rst │ ├── api.rst │ ├── basic_usage.rst │ ├── citation.rst │ ├── conf.py │ ├── contrib.rst │ ├── diagnostics.rst │ ├── faq.rst │ ├── index.rst │ ├── installation.rst │ ├── internal_api │ ├── generated │ │ └── README │ └── index.rst │ ├── internals.rst │ ├── license.rst │ ├── new.rst │ ├── plot.rst │ ├── support.rst │ ├── tutorial.rst │ ├── tutorials │ ├── boise_2018.rst │ ├── tutorial_03_2018.rst │ ├── wrf_workshop_2017.rst │ ├── wrf_workshop_2018.rst │ └── wrf_workshop_2019.rst │ └── user_api │ ├── generated │ └── README │ └── index.rst ├── fortran ├── build_help │ ├── omp_sizes.f90 │ └── sub_sizes.py ├── calc_uh.f90 ├── contrib │ └── readme ├── eqthecalc.f90 ├── omp.f90 ├── ompgen.F90 ├── ompgen.F90.template ├── reference │ ├── wrfcape.f90 │ ├── wrfcape.pyf │ ├── wrfext.f90 │ ├── wrfext.pyf │ └── wrfext2.f90.BAK ├── ripW.c ├── rip_cape.f90 ├── wrfW.c ├── wrf_cloud_fracf.f90 ├── wrf_constants.f90 ├── wrf_fctt.f90 ├── wrf_pvo.f90 ├── wrf_pw.f90 ├── wrf_relhl.f90 ├── wrf_rip_phys_routines.f90 ├── wrf_testfunc.f90 ├── wrf_user.f90 ├── wrf_user_dbz.f90 ├── wrf_user_latlon_routines.f90 ├── wrf_vinterp.f90 └── wrf_wind.f90 ├── hpc_install ├── build-wrapt.ys └── build-wrf-python.ys ├── pyproject.toml ├── src └── wrf │ ├── __init__.py │ ├── api.py │ ├── cache.py │ ├── computation.py │ ├── config.py │ ├── constants.py │ ├── contrib.py │ ├── coordpair.py │ ├── data │ └── psadilookup.dat │ ├── decorators.py │ ├── destag.py │ ├── extension.py │ ├── g_cape.py │ ├── g_cloudfrac.py │ ├── g_ctt.py │ ├── g_dbz.py │ ├── g_dewpoint.py │ ├── g_geoht.py │ ├── g_helicity.py │ ├── g_latlon.py │ ├── g_omega.py │ ├── g_precip.py │ ├── g_pressure.py │ ├── g_pw.py │ ├── g_rh.py │ ├── g_slp.py │ ├── g_temp.py │ ├── g_terrain.py │ ├── g_times.py │ ├── g_uvmet.py │ ├── g_vorticity.py │ ├── g_wind.py │ ├── geobnds.py │ ├── interp.py │ ├── interputils.py │ ├── latlonutils.py │ ├── metadecorators.py │ ├── projection.py │ ├── projutils.py │ ├── py3compat.py │ ├── routines.py │ ├── specialdec.py │ ├── units.py │ ├── util.py │ └── version.py └── test ├── cachetest.py ├── ci_tests ├── ci_result_file.nc ├── ci_test_file.nc ├── make_test_file.py └── utests.py ├── comp_utest.py ├── contrib └── readme ├── ctt_test.py ├── generator_test.py ├── ipynb ├── Doc_Examples.ipynb ├── SLS_Example.ipynb ├── Test_CTT.ipynb ├── Test_CTT_Prod.ipynb ├── WRF_Workshop_Demo.ipynb ├── WRF_python_demo.ipynb ├── loop_and_fill.ipynb ├── nocopy_test.ipynb └── reduce_files.ipynb ├── misc ├── extract_one_time.py ├── loop_and_fill_meta.py ├── mocktest.py ├── projtest.py ├── quiver_test.py ├── reduce_file.py ├── snippet.py ├── varcache.py ├── viewtest.py └── wps.py ├── ncl ├── listBug.ncl ├── ncl_get_var.ncl ├── ncl_vertcross.ncl ├── refl10_cross.ncl ├── rotated_test.ncl ├── test_this.ncl ├── test_vinterp.ncl └── wrf_user_vertcross.ncl ├── plot_tests ├── d01 │ ├── avo.png │ ├── cape2d_only.png │ ├── cape3d_only.png │ ├── cape_2d.png │ ├── cape_3d.png │ ├── cfrac.png │ ├── cin2d_only.png │ ├── cin3d_only.png │ ├── ctt.png │ ├── dbz.png │ ├── eth.png │ ├── geopt.png │ ├── helicity.png │ ├── high_cfrac.png │ ├── lat.png │ ├── lcl.png │ ├── lfc.png │ ├── lon.png │ ├── low_cfrac.png │ ├── mdbz.png │ ├── mid_cfrac.png │ ├── omg.png │ ├── p.png │ ├── pressure.png │ ├── pvo.png │ ├── pw.png │ ├── rh.png │ ├── rh2.png │ ├── slp.png │ ├── tc.png │ ├── td.png │ ├── td2.png │ ├── ter.png │ ├── theta.png │ ├── tk.png │ ├── tv.png │ ├── twb.png │ ├── ua.png │ ├── updraft_helicity.png │ ├── uvmet.png │ ├── uvmet10.png │ ├── uvmet10_wdir.png │ ├── uvmet10_wspd.png │ ├── uvmet10_wspd_wdir.png │ ├── uvmet_wdir.png │ ├── uvmet_wspd.png │ ├── uvmet_wspd_wdir.png │ ├── va.png │ ├── wa.png │ ├── wdir.png │ ├── wdir10.png │ ├── wspd.png │ ├── wspd10.png │ ├── wspd_wdir.png │ ├── wspd_wdir10.png │ └── z.png ├── d02 │ ├── avo.png │ ├── cape2d_only.png │ ├── cape3d_only.png │ ├── cape_2d.png │ ├── cape_3d.png │ ├── cfrac.png │ ├── cin2d_only.png │ ├── cin3d_only.png │ ├── ctt.png │ ├── dbz.png │ ├── eth.png │ ├── geopt.png │ ├── helicity.png │ ├── high_cfrac.png │ ├── lat.png │ ├── lcl.png │ ├── lfc.png │ ├── lon.png │ ├── low_cfrac.png │ ├── mdbz.png │ ├── mid_cfrac.png │ ├── omg.png │ ├── p.png │ ├── pressure.png │ ├── pvo.png │ ├── pw.png │ ├── rh.png │ ├── rh2.png │ ├── slp.png │ ├── tc.png │ ├── td.png │ ├── td2.png │ ├── ter.png │ ├── theta.png │ ├── tk.png │ ├── tv.png │ ├── twb.png │ ├── ua.png │ ├── updraft_helicity.png │ ├── uvmet.png │ ├── uvmet10.png │ ├── uvmet10_wdir.png │ ├── uvmet10_wspd.png │ ├── uvmet10_wspd_wdir.png │ ├── uvmet_wdir.png │ ├── uvmet_wspd.png │ ├── uvmet_wspd_wdir.png │ ├── va.png │ ├── wa.png │ ├── wdir.png │ ├── wdir10.png │ ├── wspd.png │ ├── wspd10.png │ ├── wspd_wdir.png │ ├── wspd_wdir10.png │ └── z.png └── plot_all.ipynb ├── test_filevars.py ├── test_inputs.py ├── test_multi_cache.py ├── test_omp.py ├── test_proj_params.py ├── test_units.py └── utests.py /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/.github/workflows/pypi.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/.readthedocs.yml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/CITATION.cff -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/README.md -------------------------------------------------------------------------------- /chey_intel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/chey_intel.py -------------------------------------------------------------------------------- /doc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/Makefile -------------------------------------------------------------------------------- /doc/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/make.bat -------------------------------------------------------------------------------- /doc/source/_static/images/basemap_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/_static/images/basemap_500.png -------------------------------------------------------------------------------- /doc/source/_static/images/basemap_front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/_static/images/basemap_front.png -------------------------------------------------------------------------------- /doc/source/_static/images/basemap_slp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/_static/images/basemap_slp.png -------------------------------------------------------------------------------- /doc/source/_static/images/cartopy_500.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/_static/images/cartopy_500.png -------------------------------------------------------------------------------- /doc/source/_static/images/cartopy_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/_static/images/cartopy_cross.png -------------------------------------------------------------------------------- /doc/source/_static/images/cartopy_slp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/_static/images/cartopy_slp.png -------------------------------------------------------------------------------- /doc/source/_static/images/cross_mtns.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/_static/images/cross_mtns.png -------------------------------------------------------------------------------- /doc/source/_static/images/matthew.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/_static/images/matthew.png -------------------------------------------------------------------------------- /doc/source/_static/images/matthew_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/_static/images/matthew_cross.png -------------------------------------------------------------------------------- /doc/source/_static/images/nsf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/_static/images/nsf.png -------------------------------------------------------------------------------- /doc/source/_templates/product_table.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/_templates/product_table.txt -------------------------------------------------------------------------------- /doc/source/_templates/subproducts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/_templates/subproducts.txt -------------------------------------------------------------------------------- /doc/source/_templates/wrf_class.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/_templates/wrf_class.rst -------------------------------------------------------------------------------- /doc/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/api.rst -------------------------------------------------------------------------------- /doc/source/basic_usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/basic_usage.rst -------------------------------------------------------------------------------- /doc/source/citation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/citation.rst -------------------------------------------------------------------------------- /doc/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/conf.py -------------------------------------------------------------------------------- /doc/source/contrib.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/contrib.rst -------------------------------------------------------------------------------- /doc/source/diagnostics.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/diagnostics.rst -------------------------------------------------------------------------------- /doc/source/faq.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/faq.rst -------------------------------------------------------------------------------- /doc/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/index.rst -------------------------------------------------------------------------------- /doc/source/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/installation.rst -------------------------------------------------------------------------------- /doc/source/internal_api/generated/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/internal_api/generated/README -------------------------------------------------------------------------------- /doc/source/internal_api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/internal_api/index.rst -------------------------------------------------------------------------------- /doc/source/internals.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/internals.rst -------------------------------------------------------------------------------- /doc/source/license.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/license.rst -------------------------------------------------------------------------------- /doc/source/new.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/new.rst -------------------------------------------------------------------------------- /doc/source/plot.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/plot.rst -------------------------------------------------------------------------------- /doc/source/support.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/support.rst -------------------------------------------------------------------------------- /doc/source/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/tutorial.rst -------------------------------------------------------------------------------- /doc/source/tutorials/boise_2018.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/tutorials/boise_2018.rst -------------------------------------------------------------------------------- /doc/source/tutorials/tutorial_03_2018.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/tutorials/tutorial_03_2018.rst -------------------------------------------------------------------------------- /doc/source/tutorials/wrf_workshop_2017.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/tutorials/wrf_workshop_2017.rst -------------------------------------------------------------------------------- /doc/source/tutorials/wrf_workshop_2018.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/tutorials/wrf_workshop_2018.rst -------------------------------------------------------------------------------- /doc/source/tutorials/wrf_workshop_2019.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/tutorials/wrf_workshop_2019.rst -------------------------------------------------------------------------------- /doc/source/user_api/generated/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/user_api/generated/README -------------------------------------------------------------------------------- /doc/source/user_api/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/doc/source/user_api/index.rst -------------------------------------------------------------------------------- /fortran/build_help/omp_sizes.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/build_help/omp_sizes.f90 -------------------------------------------------------------------------------- /fortran/build_help/sub_sizes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/build_help/sub_sizes.py -------------------------------------------------------------------------------- /fortran/calc_uh.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/calc_uh.f90 -------------------------------------------------------------------------------- /fortran/contrib/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/contrib/readme -------------------------------------------------------------------------------- /fortran/eqthecalc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/eqthecalc.f90 -------------------------------------------------------------------------------- /fortran/omp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/omp.f90 -------------------------------------------------------------------------------- /fortran/ompgen.F90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/ompgen.F90 -------------------------------------------------------------------------------- /fortran/ompgen.F90.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/ompgen.F90.template -------------------------------------------------------------------------------- /fortran/reference/wrfcape.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/reference/wrfcape.f90 -------------------------------------------------------------------------------- /fortran/reference/wrfcape.pyf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/reference/wrfcape.pyf -------------------------------------------------------------------------------- /fortran/reference/wrfext.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/reference/wrfext.f90 -------------------------------------------------------------------------------- /fortran/reference/wrfext.pyf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/reference/wrfext.pyf -------------------------------------------------------------------------------- /fortran/reference/wrfext2.f90.BAK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/reference/wrfext2.f90.BAK -------------------------------------------------------------------------------- /fortran/ripW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/ripW.c -------------------------------------------------------------------------------- /fortran/rip_cape.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/rip_cape.f90 -------------------------------------------------------------------------------- /fortran/wrfW.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/wrfW.c -------------------------------------------------------------------------------- /fortran/wrf_cloud_fracf.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/wrf_cloud_fracf.f90 -------------------------------------------------------------------------------- /fortran/wrf_constants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/wrf_constants.f90 -------------------------------------------------------------------------------- /fortran/wrf_fctt.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/wrf_fctt.f90 -------------------------------------------------------------------------------- /fortran/wrf_pvo.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/wrf_pvo.f90 -------------------------------------------------------------------------------- /fortran/wrf_pw.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/wrf_pw.f90 -------------------------------------------------------------------------------- /fortran/wrf_relhl.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/wrf_relhl.f90 -------------------------------------------------------------------------------- /fortran/wrf_rip_phys_routines.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/wrf_rip_phys_routines.f90 -------------------------------------------------------------------------------- /fortran/wrf_testfunc.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/wrf_testfunc.f90 -------------------------------------------------------------------------------- /fortran/wrf_user.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/wrf_user.f90 -------------------------------------------------------------------------------- /fortran/wrf_user_dbz.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/wrf_user_dbz.f90 -------------------------------------------------------------------------------- /fortran/wrf_user_latlon_routines.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/wrf_user_latlon_routines.f90 -------------------------------------------------------------------------------- /fortran/wrf_vinterp.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/wrf_vinterp.f90 -------------------------------------------------------------------------------- /fortran/wrf_wind.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/fortran/wrf_wind.f90 -------------------------------------------------------------------------------- /hpc_install/build-wrapt.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/hpc_install/build-wrapt.ys -------------------------------------------------------------------------------- /hpc_install/build-wrf-python.ys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/hpc_install/build-wrf-python.ys -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/wrf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/__init__.py -------------------------------------------------------------------------------- /src/wrf/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/api.py -------------------------------------------------------------------------------- /src/wrf/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/cache.py -------------------------------------------------------------------------------- /src/wrf/computation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/computation.py -------------------------------------------------------------------------------- /src/wrf/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/config.py -------------------------------------------------------------------------------- /src/wrf/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/constants.py -------------------------------------------------------------------------------- /src/wrf/contrib.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/wrf/coordpair.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/coordpair.py -------------------------------------------------------------------------------- /src/wrf/data/psadilookup.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/data/psadilookup.dat -------------------------------------------------------------------------------- /src/wrf/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/decorators.py -------------------------------------------------------------------------------- /src/wrf/destag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/destag.py -------------------------------------------------------------------------------- /src/wrf/extension.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/extension.py -------------------------------------------------------------------------------- /src/wrf/g_cape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_cape.py -------------------------------------------------------------------------------- /src/wrf/g_cloudfrac.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_cloudfrac.py -------------------------------------------------------------------------------- /src/wrf/g_ctt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_ctt.py -------------------------------------------------------------------------------- /src/wrf/g_dbz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_dbz.py -------------------------------------------------------------------------------- /src/wrf/g_dewpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_dewpoint.py -------------------------------------------------------------------------------- /src/wrf/g_geoht.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_geoht.py -------------------------------------------------------------------------------- /src/wrf/g_helicity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_helicity.py -------------------------------------------------------------------------------- /src/wrf/g_latlon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_latlon.py -------------------------------------------------------------------------------- /src/wrf/g_omega.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_omega.py -------------------------------------------------------------------------------- /src/wrf/g_precip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_precip.py -------------------------------------------------------------------------------- /src/wrf/g_pressure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_pressure.py -------------------------------------------------------------------------------- /src/wrf/g_pw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_pw.py -------------------------------------------------------------------------------- /src/wrf/g_rh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_rh.py -------------------------------------------------------------------------------- /src/wrf/g_slp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_slp.py -------------------------------------------------------------------------------- /src/wrf/g_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_temp.py -------------------------------------------------------------------------------- /src/wrf/g_terrain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_terrain.py -------------------------------------------------------------------------------- /src/wrf/g_times.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_times.py -------------------------------------------------------------------------------- /src/wrf/g_uvmet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_uvmet.py -------------------------------------------------------------------------------- /src/wrf/g_vorticity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_vorticity.py -------------------------------------------------------------------------------- /src/wrf/g_wind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/g_wind.py -------------------------------------------------------------------------------- /src/wrf/geobnds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/geobnds.py -------------------------------------------------------------------------------- /src/wrf/interp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/interp.py -------------------------------------------------------------------------------- /src/wrf/interputils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/interputils.py -------------------------------------------------------------------------------- /src/wrf/latlonutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/latlonutils.py -------------------------------------------------------------------------------- /src/wrf/metadecorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/metadecorators.py -------------------------------------------------------------------------------- /src/wrf/projection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/projection.py -------------------------------------------------------------------------------- /src/wrf/projutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/projutils.py -------------------------------------------------------------------------------- /src/wrf/py3compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/py3compat.py -------------------------------------------------------------------------------- /src/wrf/routines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/routines.py -------------------------------------------------------------------------------- /src/wrf/specialdec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/specialdec.py -------------------------------------------------------------------------------- /src/wrf/units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/units.py -------------------------------------------------------------------------------- /src/wrf/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/src/wrf/util.py -------------------------------------------------------------------------------- /src/wrf/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "1.4.1" 2 | -------------------------------------------------------------------------------- /test/cachetest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/cachetest.py -------------------------------------------------------------------------------- /test/ci_tests/ci_result_file.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ci_tests/ci_result_file.nc -------------------------------------------------------------------------------- /test/ci_tests/ci_test_file.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ci_tests/ci_test_file.nc -------------------------------------------------------------------------------- /test/ci_tests/make_test_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ci_tests/make_test_file.py -------------------------------------------------------------------------------- /test/ci_tests/utests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ci_tests/utests.py -------------------------------------------------------------------------------- /test/comp_utest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/comp_utest.py -------------------------------------------------------------------------------- /test/contrib/readme: -------------------------------------------------------------------------------- 1 | This directory is for user contributed tests. -------------------------------------------------------------------------------- /test/ctt_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ctt_test.py -------------------------------------------------------------------------------- /test/generator_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/generator_test.py -------------------------------------------------------------------------------- /test/ipynb/Doc_Examples.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ipynb/Doc_Examples.ipynb -------------------------------------------------------------------------------- /test/ipynb/SLS_Example.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ipynb/SLS_Example.ipynb -------------------------------------------------------------------------------- /test/ipynb/Test_CTT.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ipynb/Test_CTT.ipynb -------------------------------------------------------------------------------- /test/ipynb/Test_CTT_Prod.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ipynb/Test_CTT_Prod.ipynb -------------------------------------------------------------------------------- /test/ipynb/WRF_Workshop_Demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ipynb/WRF_Workshop_Demo.ipynb -------------------------------------------------------------------------------- /test/ipynb/WRF_python_demo.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ipynb/WRF_python_demo.ipynb -------------------------------------------------------------------------------- /test/ipynb/loop_and_fill.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ipynb/loop_and_fill.ipynb -------------------------------------------------------------------------------- /test/ipynb/nocopy_test.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ipynb/nocopy_test.ipynb -------------------------------------------------------------------------------- /test/ipynb/reduce_files.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ipynb/reduce_files.ipynb -------------------------------------------------------------------------------- /test/misc/extract_one_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/misc/extract_one_time.py -------------------------------------------------------------------------------- /test/misc/loop_and_fill_meta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/misc/loop_and_fill_meta.py -------------------------------------------------------------------------------- /test/misc/mocktest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/misc/mocktest.py -------------------------------------------------------------------------------- /test/misc/projtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/misc/projtest.py -------------------------------------------------------------------------------- /test/misc/quiver_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/misc/quiver_test.py -------------------------------------------------------------------------------- /test/misc/reduce_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/misc/reduce_file.py -------------------------------------------------------------------------------- /test/misc/snippet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/misc/snippet.py -------------------------------------------------------------------------------- /test/misc/varcache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/misc/varcache.py -------------------------------------------------------------------------------- /test/misc/viewtest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/misc/viewtest.py -------------------------------------------------------------------------------- /test/misc/wps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/misc/wps.py -------------------------------------------------------------------------------- /test/ncl/listBug.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ncl/listBug.ncl -------------------------------------------------------------------------------- /test/ncl/ncl_get_var.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ncl/ncl_get_var.ncl -------------------------------------------------------------------------------- /test/ncl/ncl_vertcross.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ncl/ncl_vertcross.ncl -------------------------------------------------------------------------------- /test/ncl/refl10_cross.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ncl/refl10_cross.ncl -------------------------------------------------------------------------------- /test/ncl/rotated_test.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ncl/rotated_test.ncl -------------------------------------------------------------------------------- /test/ncl/test_this.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ncl/test_this.ncl -------------------------------------------------------------------------------- /test/ncl/test_vinterp.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ncl/test_vinterp.ncl -------------------------------------------------------------------------------- /test/ncl/wrf_user_vertcross.ncl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/ncl/wrf_user_vertcross.ncl -------------------------------------------------------------------------------- /test/plot_tests/d01/avo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/avo.png -------------------------------------------------------------------------------- /test/plot_tests/d01/cape2d_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/cape2d_only.png -------------------------------------------------------------------------------- /test/plot_tests/d01/cape3d_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/cape3d_only.png -------------------------------------------------------------------------------- /test/plot_tests/d01/cape_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/cape_2d.png -------------------------------------------------------------------------------- /test/plot_tests/d01/cape_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/cape_3d.png -------------------------------------------------------------------------------- /test/plot_tests/d01/cfrac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/cfrac.png -------------------------------------------------------------------------------- /test/plot_tests/d01/cin2d_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/cin2d_only.png -------------------------------------------------------------------------------- /test/plot_tests/d01/cin3d_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/cin3d_only.png -------------------------------------------------------------------------------- /test/plot_tests/d01/ctt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/ctt.png -------------------------------------------------------------------------------- /test/plot_tests/d01/dbz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/dbz.png -------------------------------------------------------------------------------- /test/plot_tests/d01/eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/eth.png -------------------------------------------------------------------------------- /test/plot_tests/d01/geopt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/geopt.png -------------------------------------------------------------------------------- /test/plot_tests/d01/helicity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/helicity.png -------------------------------------------------------------------------------- /test/plot_tests/d01/high_cfrac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/high_cfrac.png -------------------------------------------------------------------------------- /test/plot_tests/d01/lat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/lat.png -------------------------------------------------------------------------------- /test/plot_tests/d01/lcl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/lcl.png -------------------------------------------------------------------------------- /test/plot_tests/d01/lfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/lfc.png -------------------------------------------------------------------------------- /test/plot_tests/d01/lon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/lon.png -------------------------------------------------------------------------------- /test/plot_tests/d01/low_cfrac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/low_cfrac.png -------------------------------------------------------------------------------- /test/plot_tests/d01/mdbz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/mdbz.png -------------------------------------------------------------------------------- /test/plot_tests/d01/mid_cfrac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/mid_cfrac.png -------------------------------------------------------------------------------- /test/plot_tests/d01/omg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/omg.png -------------------------------------------------------------------------------- /test/plot_tests/d01/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/p.png -------------------------------------------------------------------------------- /test/plot_tests/d01/pressure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/pressure.png -------------------------------------------------------------------------------- /test/plot_tests/d01/pvo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/pvo.png -------------------------------------------------------------------------------- /test/plot_tests/d01/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/pw.png -------------------------------------------------------------------------------- /test/plot_tests/d01/rh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/rh.png -------------------------------------------------------------------------------- /test/plot_tests/d01/rh2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/rh2.png -------------------------------------------------------------------------------- /test/plot_tests/d01/slp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/slp.png -------------------------------------------------------------------------------- /test/plot_tests/d01/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/tc.png -------------------------------------------------------------------------------- /test/plot_tests/d01/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/td.png -------------------------------------------------------------------------------- /test/plot_tests/d01/td2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/td2.png -------------------------------------------------------------------------------- /test/plot_tests/d01/ter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/ter.png -------------------------------------------------------------------------------- /test/plot_tests/d01/theta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/theta.png -------------------------------------------------------------------------------- /test/plot_tests/d01/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/tk.png -------------------------------------------------------------------------------- /test/plot_tests/d01/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/tv.png -------------------------------------------------------------------------------- /test/plot_tests/d01/twb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/twb.png -------------------------------------------------------------------------------- /test/plot_tests/d01/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/ua.png -------------------------------------------------------------------------------- /test/plot_tests/d01/updraft_helicity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/updraft_helicity.png -------------------------------------------------------------------------------- /test/plot_tests/d01/uvmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/uvmet.png -------------------------------------------------------------------------------- /test/plot_tests/d01/uvmet10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/uvmet10.png -------------------------------------------------------------------------------- /test/plot_tests/d01/uvmet10_wdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/uvmet10_wdir.png -------------------------------------------------------------------------------- /test/plot_tests/d01/uvmet10_wspd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/uvmet10_wspd.png -------------------------------------------------------------------------------- /test/plot_tests/d01/uvmet10_wspd_wdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/uvmet10_wspd_wdir.png -------------------------------------------------------------------------------- /test/plot_tests/d01/uvmet_wdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/uvmet_wdir.png -------------------------------------------------------------------------------- /test/plot_tests/d01/uvmet_wspd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/uvmet_wspd.png -------------------------------------------------------------------------------- /test/plot_tests/d01/uvmet_wspd_wdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/uvmet_wspd_wdir.png -------------------------------------------------------------------------------- /test/plot_tests/d01/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/va.png -------------------------------------------------------------------------------- /test/plot_tests/d01/wa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/wa.png -------------------------------------------------------------------------------- /test/plot_tests/d01/wdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/wdir.png -------------------------------------------------------------------------------- /test/plot_tests/d01/wdir10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/wdir10.png -------------------------------------------------------------------------------- /test/plot_tests/d01/wspd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/wspd.png -------------------------------------------------------------------------------- /test/plot_tests/d01/wspd10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/wspd10.png -------------------------------------------------------------------------------- /test/plot_tests/d01/wspd_wdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/wspd_wdir.png -------------------------------------------------------------------------------- /test/plot_tests/d01/wspd_wdir10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/wspd_wdir10.png -------------------------------------------------------------------------------- /test/plot_tests/d01/z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d01/z.png -------------------------------------------------------------------------------- /test/plot_tests/d02/avo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/avo.png -------------------------------------------------------------------------------- /test/plot_tests/d02/cape2d_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/cape2d_only.png -------------------------------------------------------------------------------- /test/plot_tests/d02/cape3d_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/cape3d_only.png -------------------------------------------------------------------------------- /test/plot_tests/d02/cape_2d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/cape_2d.png -------------------------------------------------------------------------------- /test/plot_tests/d02/cape_3d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/cape_3d.png -------------------------------------------------------------------------------- /test/plot_tests/d02/cfrac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/cfrac.png -------------------------------------------------------------------------------- /test/plot_tests/d02/cin2d_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/cin2d_only.png -------------------------------------------------------------------------------- /test/plot_tests/d02/cin3d_only.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/cin3d_only.png -------------------------------------------------------------------------------- /test/plot_tests/d02/ctt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/ctt.png -------------------------------------------------------------------------------- /test/plot_tests/d02/dbz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/dbz.png -------------------------------------------------------------------------------- /test/plot_tests/d02/eth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/eth.png -------------------------------------------------------------------------------- /test/plot_tests/d02/geopt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/geopt.png -------------------------------------------------------------------------------- /test/plot_tests/d02/helicity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/helicity.png -------------------------------------------------------------------------------- /test/plot_tests/d02/high_cfrac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/high_cfrac.png -------------------------------------------------------------------------------- /test/plot_tests/d02/lat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/lat.png -------------------------------------------------------------------------------- /test/plot_tests/d02/lcl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/lcl.png -------------------------------------------------------------------------------- /test/plot_tests/d02/lfc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/lfc.png -------------------------------------------------------------------------------- /test/plot_tests/d02/lon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/lon.png -------------------------------------------------------------------------------- /test/plot_tests/d02/low_cfrac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/low_cfrac.png -------------------------------------------------------------------------------- /test/plot_tests/d02/mdbz.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/mdbz.png -------------------------------------------------------------------------------- /test/plot_tests/d02/mid_cfrac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/mid_cfrac.png -------------------------------------------------------------------------------- /test/plot_tests/d02/omg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/omg.png -------------------------------------------------------------------------------- /test/plot_tests/d02/p.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/p.png -------------------------------------------------------------------------------- /test/plot_tests/d02/pressure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/pressure.png -------------------------------------------------------------------------------- /test/plot_tests/d02/pvo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/pvo.png -------------------------------------------------------------------------------- /test/plot_tests/d02/pw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/pw.png -------------------------------------------------------------------------------- /test/plot_tests/d02/rh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/rh.png -------------------------------------------------------------------------------- /test/plot_tests/d02/rh2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/rh2.png -------------------------------------------------------------------------------- /test/plot_tests/d02/slp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/slp.png -------------------------------------------------------------------------------- /test/plot_tests/d02/tc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/tc.png -------------------------------------------------------------------------------- /test/plot_tests/d02/td.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/td.png -------------------------------------------------------------------------------- /test/plot_tests/d02/td2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/td2.png -------------------------------------------------------------------------------- /test/plot_tests/d02/ter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/ter.png -------------------------------------------------------------------------------- /test/plot_tests/d02/theta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/theta.png -------------------------------------------------------------------------------- /test/plot_tests/d02/tk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/tk.png -------------------------------------------------------------------------------- /test/plot_tests/d02/tv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/tv.png -------------------------------------------------------------------------------- /test/plot_tests/d02/twb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/twb.png -------------------------------------------------------------------------------- /test/plot_tests/d02/ua.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/ua.png -------------------------------------------------------------------------------- /test/plot_tests/d02/updraft_helicity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/updraft_helicity.png -------------------------------------------------------------------------------- /test/plot_tests/d02/uvmet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/uvmet.png -------------------------------------------------------------------------------- /test/plot_tests/d02/uvmet10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/uvmet10.png -------------------------------------------------------------------------------- /test/plot_tests/d02/uvmet10_wdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/uvmet10_wdir.png -------------------------------------------------------------------------------- /test/plot_tests/d02/uvmet10_wspd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/uvmet10_wspd.png -------------------------------------------------------------------------------- /test/plot_tests/d02/uvmet10_wspd_wdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/uvmet10_wspd_wdir.png -------------------------------------------------------------------------------- /test/plot_tests/d02/uvmet_wdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/uvmet_wdir.png -------------------------------------------------------------------------------- /test/plot_tests/d02/uvmet_wspd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/uvmet_wspd.png -------------------------------------------------------------------------------- /test/plot_tests/d02/uvmet_wspd_wdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/uvmet_wspd_wdir.png -------------------------------------------------------------------------------- /test/plot_tests/d02/va.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/va.png -------------------------------------------------------------------------------- /test/plot_tests/d02/wa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/wa.png -------------------------------------------------------------------------------- /test/plot_tests/d02/wdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/wdir.png -------------------------------------------------------------------------------- /test/plot_tests/d02/wdir10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/wdir10.png -------------------------------------------------------------------------------- /test/plot_tests/d02/wspd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/wspd.png -------------------------------------------------------------------------------- /test/plot_tests/d02/wspd10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/wspd10.png -------------------------------------------------------------------------------- /test/plot_tests/d02/wspd_wdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/wspd_wdir.png -------------------------------------------------------------------------------- /test/plot_tests/d02/wspd_wdir10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/wspd_wdir10.png -------------------------------------------------------------------------------- /test/plot_tests/d02/z.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/d02/z.png -------------------------------------------------------------------------------- /test/plot_tests/plot_all.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/plot_tests/plot_all.ipynb -------------------------------------------------------------------------------- /test/test_filevars.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/test_filevars.py -------------------------------------------------------------------------------- /test/test_inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/test_inputs.py -------------------------------------------------------------------------------- /test/test_multi_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/test_multi_cache.py -------------------------------------------------------------------------------- /test/test_omp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/test_omp.py -------------------------------------------------------------------------------- /test/test_proj_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/test_proj_params.py -------------------------------------------------------------------------------- /test/test_units.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/test_units.py -------------------------------------------------------------------------------- /test/utests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NCAR/wrf-python/HEAD/test/utests.py --------------------------------------------------------------------------------