Metadata-Version: 2.1
Name: aprofiles
Version: 0.1.0
Summary: aerosol profiles processing and visualization
Home-page: https://aprofiles.readthedocs.io/
Author: Augustin Mortier
Author-email: augustinm@met.no
License: MIT
Description: ### A-Profiles
        
        Python libary for reading and processing [E-PROFILE](https://e-profile.eu/#/cm_profile) ceilometer data. This library is used by [V-Profiles](https://aerocom-vprofiles.met.no).
        
        ## Installation
        `pip install aprofiles`
        
        ## Get started
        ```
        #import library
        import aprofiles as apro
        
        #read NetCDF data
        path = "data/e-profile/2021/09/08/L2_0-20000-006735_A20210908.nc"
        apro_reader = apro.reader.ReadProfiles(path)
        l2_data = apro_reader.read()
        
        #plot Quick Look
        apro_plotter = apro.plotter.Plotter(l2_data)
        apro_plotter.plot('attenuated_backscatter_0',vmin=0, vmax=2, cmap='viridis')
        ```
        
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
