├── .github └── ISSUE_TEMPLATE │ └── bug_report.md ├── LICENSE ├── README.md ├── china-netcdf_to_df-tidy.ipynb ├── combine_emissions.py ├── conda.md ├── correct_china_measurements.py ├── demo_files └── namelist.wps.demo ├── get_modmeas_pickles.py ├── interpolated_model_timeseries.py ├── plot_wrf_domains.py ├── post.bash_split.py ├── wrf-python ├── README.md ├── basic_plots.py ├── domain_inspector.py ├── environment.yml ├── example_figures │ ├── WRF_plot_grid.png │ ├── d01overview.png │ └── domains.png ├── plot_grids.py └── requirements.txt ├── wrfout_concat_regrid.py └── wrfout_regrid.py /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/README.md -------------------------------------------------------------------------------- /china-netcdf_to_df-tidy.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/china-netcdf_to_df-tidy.ipynb -------------------------------------------------------------------------------- /combine_emissions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/combine_emissions.py -------------------------------------------------------------------------------- /conda.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/conda.md -------------------------------------------------------------------------------- /correct_china_measurements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/correct_china_measurements.py -------------------------------------------------------------------------------- /demo_files/namelist.wps.demo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/demo_files/namelist.wps.demo -------------------------------------------------------------------------------- /get_modmeas_pickles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/get_modmeas_pickles.py -------------------------------------------------------------------------------- /interpolated_model_timeseries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/interpolated_model_timeseries.py -------------------------------------------------------------------------------- /plot_wrf_domains.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/plot_wrf_domains.py -------------------------------------------------------------------------------- /post.bash_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/post.bash_split.py -------------------------------------------------------------------------------- /wrf-python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/wrf-python/README.md -------------------------------------------------------------------------------- /wrf-python/basic_plots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/wrf-python/basic_plots.py -------------------------------------------------------------------------------- /wrf-python/domain_inspector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/wrf-python/domain_inspector.py -------------------------------------------------------------------------------- /wrf-python/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/wrf-python/environment.yml -------------------------------------------------------------------------------- /wrf-python/example_figures/WRF_plot_grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/wrf-python/example_figures/WRF_plot_grid.png -------------------------------------------------------------------------------- /wrf-python/example_figures/d01overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/wrf-python/example_figures/d01overview.png -------------------------------------------------------------------------------- /wrf-python/example_figures/domains.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/wrf-python/example_figures/domains.png -------------------------------------------------------------------------------- /wrf-python/plot_grids.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/wrf-python/plot_grids.py -------------------------------------------------------------------------------- /wrf-python/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/wrf-python/requirements.txt -------------------------------------------------------------------------------- /wrfout_concat_regrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/wrfout_concat_regrid.py -------------------------------------------------------------------------------- /wrfout_regrid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wrfchem-leeds/python-scripts/HEAD/wrfout_regrid.py --------------------------------------------------------------------------------