Metadata-Version: 1.1
Name: PyMicrotops
Version: 1.0.1
Summary: A module to read and process data from the Microtops sun photometer, including reading via serial link and interpolating to AOT at any wavelength
Home-page: https://github.com/robintw/PyMicrotops
Author: Robin Wilson
Author-email: robin@rtwilson.com
License: BSC
Description: PyMicrotops
        ===========
        
        This is a Python module to simplify working with data from the Microtops
        sun photometer.
        
        There are two principal functions at the moment:
        
        1) Processing Microtops data files (including interpolating AOT at other
           wavelengths)
        
        2) Reading Microtops data from the instrument over a serial connection,
           and saving/processing the data.
        
        The module is fairly well documented with docstrings, so a fairly quick
        example should be all that's needed:
        
        .. code:: python
        
            from PyMicrotops import Microtops
            m = Microtops(microtopsfile.csv)
            # Plot all of the AOT data
            m.plot()
            # Plot for a specific time period
            m.plot('2014-07-10','2014-07-19')
            # Get AOT at a specific wavelength - interpolating if needed
            m.aot(550)
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Scientific/Engineering :: Atmospheric Science
Classifier: Topic :: Scientific/Engineering :: Physics
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2
