https://github.com/syedhamidali/pyscancf
Creates PyART compatible cf-radial data from single scans of IMD Radar data.
https://github.com/syedhamidali/pyscancf
cfradial dwr grid-radar imd jupyter-notebook pyart python qpe radar
Last synced: 3 months ago
JSON representation
Creates PyART compatible cf-radial data from single scans of IMD Radar data.
- Host: GitHub
- URL: https://github.com/syedhamidali/pyscancf
- Owner: syedhamidali
- License: mit
- Created: 2021-10-16T19:57:32.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-02-23T03:23:40.000Z (about 1 year ago)
- Last Synced: 2024-04-24T13:10:54.858Z (about 1 year ago)
- Topics: cfradial, dwr, grid-radar, imd, jupyter-notebook, pyart, python, qpe, radar
- Language: Python
- Homepage: https://syedha.com/PyScanCf
- Size: 134 MB
- Stars: 13
- Watchers: 2
- Forks: 7
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: License
- Citation: CITATION.cff
Awesome Lists containing this project
README
[](https://gitter.im/PyScanCf/Issues?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
# PyScanCf
Creates Py-ART compatible cf-radial data from individual sweeps of Indian Meteorological Department (IMD) Radar data
## Description
PyScanCf is a library for creating cfradial (polar) data from IMD radars that contain all 10 sweeps from single scans which are named as (Polar_ABC.nc) as well as gridded radar data from which are named as (grid_ABC.nc). Both formats are compatible for PyART. It uses Pyart to create grid data, so please remember to cite **Py-ART** as well.
Latest Documentation
====================https://syedha.com/PyScanCf/
Latest Examples
====================https://github.com/syedhamidali/pyscancf_examples
Installing from source
======================Installing PyScanCf from source is the only way to get the latest updates and
enhancement to the software that have not yet made it into a release.
The latest source code for PyScanCf can be obtained from the GitHub repository,
https://github.com/syedhamidali/PyScanCf.git.How to install::
conda create -n pcf python=3.9 jupyter arm_pyart pandas wradlib git -c conda-forge
conda activate pcf
pip install git+https://github.com/syedhamidali/PyScanCf.gitOr, to install in your home directory, use::
git clone https://github.com/syedhamidali/PyScanCf.git
python setup.py install --userOr, Install via pip::
pip install pyscancf
Citation
========[](https://doi.org/10.5281/zenodo.5574160)
Syed, H. A., Sayyed, I., Kalapureddy, M. C. R., & Grandhi, K. K. (2021). PyScanCf – The library for single sweep datasets of IMD weather radars. Zenodo.
[doi:10.5281/zenodo.5574160](https://doi.org/10.5281/zenodo.5574160).### PyScanCf Tutorial on Youtube
### Documentation
Import Library::
import pyscancf as pcf
Mention the data path::
inp = '/Users/rizvi/Downloads/goa16'
Convert data to cfradial format::
pcf.cfrad(inp,inp,True,'REF')
And you'll see the beautiful gridded data plot in your notebook,
the figures will be saved in the directory from where you launched the notebook
Detailed and efficient way to use this toolkit
-------
[Detailed Notebook](https://syedha.com/imd/IMD_radar_data_pyscancf.html)