├── LICENSE ├── README.md ├── example ├── spolka.20111018_163032.nc └── test.py ├── setup.py └── uw_raintype ├── __init__.py ├── algorithm.py ├── netcdf_io.py ├── raintype.py ├── rtfunctions.py └── runraintype.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpowell/raintype_python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpowell/raintype_python/HEAD/README.md -------------------------------------------------------------------------------- /example/spolka.20111018_163032.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpowell/raintype_python/HEAD/example/spolka.20111018_163032.nc -------------------------------------------------------------------------------- /example/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpowell/raintype_python/HEAD/example/test.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpowell/raintype_python/HEAD/setup.py -------------------------------------------------------------------------------- /uw_raintype/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpowell/raintype_python/HEAD/uw_raintype/__init__.py -------------------------------------------------------------------------------- /uw_raintype/algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpowell/raintype_python/HEAD/uw_raintype/algorithm.py -------------------------------------------------------------------------------- /uw_raintype/netcdf_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpowell/raintype_python/HEAD/uw_raintype/netcdf_io.py -------------------------------------------------------------------------------- /uw_raintype/raintype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpowell/raintype_python/HEAD/uw_raintype/raintype.py -------------------------------------------------------------------------------- /uw_raintype/rtfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpowell/raintype_python/HEAD/uw_raintype/rtfunctions.py -------------------------------------------------------------------------------- /uw_raintype/runraintype.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swpowell/raintype_python/HEAD/uw_raintype/runraintype.py --------------------------------------------------------------------------------