Metadata-Version: 2.1
Name: ismrpy
Version: 0.2.9
Summary: Reads ismr files and provides pandas data frame
Home-page: https://github.com/dinilbose/ismrpy
Author: Dinil Bose P
Author-email: dinilbose@gmail.com
License: gpl-3.0
Download-URL: https://github.com/dinilbose/ismrpy/archive/0.2.9.tar.gz
Description: # ismrpy
        
        Reads ismr files and provides with a panda data frame
        
        ## Getting Started
        ### Prerequisites
        
        Things needed before installation of package
        ```
        pip install numpy
        pip install pandas
        ```
        
        ### Installing
        
        ```
        pip install ismrpy
        ```
        
        
        ## Usage
        Inputs-
        
            filename= Name of the file
        
        If provided with lat and lon program calculates Ionospheric pierce points.
        
            lat= latitude of station
            lon=longitude of station
            IPP=Height of ionospheric layer in kilometers (default 350 KM)
            skiprows=Number of rows to be skipped(default None)
            
        To read general ismr file
            
        ```
        import ismrpy
        data=ismrpy.read_ismr(filename=Name_of_file)
        ```
        
        To read specific files with header and with extra number of columns:
        
        ismrpy.ismr_column provides the column names, if there is an extra column in ismr (usually from ismr files from LISN networks has filename as extra column) add extra column using following command
                
        ```
        ismrpy.ismr_column.append('Name of the column')
        ```
            
        To skip the first line of the file use skiprows=1
                
        ```
        data=ismrpy.read_ismr(filename=Name_of_file,skiprows=1)
        ```
            
        ## Authors
        
        All are welcome to contribute to the project
        See also the list of [contributors](https://github.com/dinilbose/ismrpy/contributors) who participated in this project.
        
        ## License
        
        This project is licensed under the GPL-3 License - see the [LICENSE.md](LICENSE.txt) file for details
        
Keywords: ismr,pandas
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Description-Content-Type: text/markdown
