├── .gitignore ├── LICENSE ├── README.md ├── bias_correct.py ├── data ├── merra_example.nc └── prism_example.nc ├── merra_prism_example.py ├── preprocess.bash ├── qmap.py └── spatial_scaling.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvandal/bcsd-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvandal/bcsd-python/HEAD/README.md -------------------------------------------------------------------------------- /bias_correct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvandal/bcsd-python/HEAD/bias_correct.py -------------------------------------------------------------------------------- /data/merra_example.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvandal/bcsd-python/HEAD/data/merra_example.nc -------------------------------------------------------------------------------- /data/prism_example.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvandal/bcsd-python/HEAD/data/prism_example.nc -------------------------------------------------------------------------------- /merra_prism_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvandal/bcsd-python/HEAD/merra_prism_example.py -------------------------------------------------------------------------------- /preprocess.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvandal/bcsd-python/HEAD/preprocess.bash -------------------------------------------------------------------------------- /qmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvandal/bcsd-python/HEAD/qmap.py -------------------------------------------------------------------------------- /spatial_scaling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tjvandal/bcsd-python/HEAD/spatial_scaling.py --------------------------------------------------------------------------------