Metadata-Version: 2.1
Name: pyscancf
Version: 1.0.14
Summary: Creates PyArt compatible cf-radial data from single scans of IMD Radar data
Home-page: https://github.com/syedhamidali/PyScanCf
Author: Syed Hamid Ali
License: UNKNOWN
Project-URL: Bug Reports, https://github.com/syedhamidali/PyScanCf/issues
Project-URL: Source, https://github.com/syedhamidali/PyScanCf/
Keywords: IMD Radar cf-radial single sweeps radar weather meteorology
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
Requires-Dist: numpy
Requires-Dist: arm-pyart
Requires-Dist: netCDF4
Requires-Dist: wradlib
Requires-Dist: pandas

# PyScanCf

Creates PyArt compatible cf-radial data from single scans of 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 pyart as well.

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 -c conda-forge
    conda activate pcf
    pip install git+https://github.com/syedhamidali/PyScanCf.git

Or, to install in your home directory, use::

    git clone https://github.com/syedhamidali/PyScanCf.git
    python setup.py install --user

Or, Install via pip::

    pip install pyscancf

