├── .gitignore ├── LICENSE ├── README.md ├── Utils ├── Sulfate_redistribution.py └── gocart2mosaic.py ├── config.py ├── doc ├── f1.png ├── main.tex └── references.bib ├── main.py ├── many.sh ├── merra2_module.py ├── merra2wrf_mapper.py ├── utils.py ├── wrf_module.py └── zero_fields.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/README.md -------------------------------------------------------------------------------- /Utils/Sulfate_redistribution.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/Utils/Sulfate_redistribution.py -------------------------------------------------------------------------------- /Utils/gocart2mosaic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/Utils/gocart2mosaic.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/config.py -------------------------------------------------------------------------------- /doc/f1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/doc/f1.png -------------------------------------------------------------------------------- /doc/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/doc/main.tex -------------------------------------------------------------------------------- /doc/references.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/doc/references.bib -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/main.py -------------------------------------------------------------------------------- /many.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/many.sh -------------------------------------------------------------------------------- /merra2_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/merra2_module.py -------------------------------------------------------------------------------- /merra2wrf_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/merra2wrf_mapper.py -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/utils.py -------------------------------------------------------------------------------- /wrf_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/wrf_module.py -------------------------------------------------------------------------------- /zero_fields.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saneku/Merra2BC/HEAD/zero_fields.py --------------------------------------------------------------------------------