├── .DS_Store ├── .github └── workflows │ ├── ci.yml │ └── upload_pypi.yml ├── .gitignore ├── .nojekyll ├── .pre-commit-config.yaml ├── .readthedocs.yaml ├── CITATION.cff ├── Examples └── examples.md ├── License ├── README.md ├── docs ├── API.md ├── Makefile ├── _static │ └── cappi.png ├── conf.py ├── index.md ├── make.bat └── notebooks │ ├── Notebook.ipynb │ ├── TEST_Notebook.ipynb │ └── tutorial.ipynb ├── environment.yml ├── notebooks └── tutorial.html ├── pyproject.toml ├── pyscancf ├── .DS_Store ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-39.pyc │ └── pyscancf.cpython-39.pyc ├── cmapmaker.py ├── maxcappi.py ├── pyscancf.py └── utils.py ├── requirements.txt ├── requirements_dev.txt └── test_pyscancf.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/upload_pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/.github/workflows/upload_pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/.gitignore -------------------------------------------------------------------------------- /.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/CITATION.cff -------------------------------------------------------------------------------- /Examples/examples.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/Examples/examples.md -------------------------------------------------------------------------------- /License: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/License -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/README.md -------------------------------------------------------------------------------- /docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/docs/API.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/cappi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/docs/_static/cappi.png -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/notebooks/Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/docs/notebooks/Notebook.ipynb -------------------------------------------------------------------------------- /docs/notebooks/TEST_Notebook.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/docs/notebooks/TEST_Notebook.ipynb -------------------------------------------------------------------------------- /docs/notebooks/tutorial.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/docs/notebooks/tutorial.ipynb -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/environment.yml -------------------------------------------------------------------------------- /notebooks/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/notebooks/tutorial.html -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/pyproject.toml -------------------------------------------------------------------------------- /pyscancf/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/pyscancf/.DS_Store -------------------------------------------------------------------------------- /pyscancf/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/pyscancf/__init__.py -------------------------------------------------------------------------------- /pyscancf/__pycache__/__init__.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/pyscancf/__pycache__/__init__.cpython-39.pyc -------------------------------------------------------------------------------- /pyscancf/__pycache__/pyscancf.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/pyscancf/__pycache__/pyscancf.cpython-39.pyc -------------------------------------------------------------------------------- /pyscancf/cmapmaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/pyscancf/cmapmaker.py -------------------------------------------------------------------------------- /pyscancf/maxcappi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/pyscancf/maxcappi.py -------------------------------------------------------------------------------- /pyscancf/pyscancf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/pyscancf/pyscancf.py -------------------------------------------------------------------------------- /pyscancf/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/pyscancf/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | netCDF4 2 | numpy 3 | pyproj 4 | scipy 5 | xarray 6 | arm_pyart 7 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /test_pyscancf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/syedhamidali/PyScanCf/HEAD/test_pyscancf.py --------------------------------------------------------------------------------