Metadata-Version: 2.1
Name: goamazondownloader
Version: 0.1.3
Summary: A library python to download data of campaign GoAmazon
Home-page: https://github.com/AdrianoPereira/goamazondownloader
Author: Adriano P. Almeida
Author-email: adriano.almeida@inpe.br
License: MIT
Project-URL: Bug Reports, https://github.com/AdrianoPereira/goamazondownloader/issues
Project-URL: Say Thanks!, http://adrianopereira.github.io
Project-URL: Source, https://github.com/AdrianoPereira/goamazondownloader
Description: <h1 align="center">Go Amazon Downloader Data</h1>
        <div align="center">
          <strong>A Python Library for download data from campaign Green Ocean Amazon</strong>
        </div>
        
        <h3 align="center">Developer</h3>
        <div align="center">
          <strong>
            <a href="https://github.com/AdrianoPereira">AdrianoPereira</a> &emsp;
          </strong>
        </div>
        
        ---
        
        ![schema](https://github.com/AdrianoPereira/goamazondownloader/raw/master/assets/schema.png)
        
        ### Features
        - Download S-Band Radar (SIPAM)
        - Download Very Low Frequency Sensor (STARNET)
        
        For the time being, only the modules to download the files from S-Band Randar (SIPAM) and Very Low 
        Frequency have been implemented.
        
        ##
        
        ### Installation
        
        Via pip:
        ```console
        pip install goamazondownloader
        ```
        
        Via source code:
        ```console
        git clone https://github.com/AdrianoPereira/goamazondownloader.git
        cd goamazondownloader
        python setup.py install
        ```
        **Dependencies**
        - requests
        - beautifulsoup4
        
        ##
        ### Usage
        The files are hosted on the [ARM](https://www.arm.gov/research/campaigns/amf2014goamazon) website. 
        To download the files it is necessary to have a registration. Registration can be done quickly through the following 
        link: [https://adc.arm.gov/armuserreg/#/new](https://adc.arm.gov/armuserreg/#/new).
        
        **Download S-Band Radar (SIPAM)**
        
        ```python
        from goamazondownloader import SBandRadar
        
        downloader = SBandRadar(year=2014, month=2, day=18, hour=15, minute=0)
        downloader.obj.login(username="<username>") # <username> maybe your username or e-mail
        downloader.set_remote_url()
        downloader.download()
        
        ```
        
        **Downloader Very Low Frequency Sensor (STARNET)**
        ```python
        from goamazondownloader import VLFSensor
        
        downloader = VLFSensor(year=2014, month=2, day=18)
        downloader.login("username") # # <username> maybe your username or e-mail
        downloader.set_remote_url()
        downloader.download()
        
        ```
        ##
        
        ### Contributing
        Thank you for being interested on making this package better. I encourage everyone to help improving this project with 
        some new features, bug fixes and performance issues. 
        
        ##
        
        ### Need help?
        If you need help with GoAmazon Downloader, please open an issue with a description of the problem you're facing. 
        
        ##
        
        ### License
        [MIT](LICENSE) (c) 2020
Keywords: data weather,goamazon,sipam,starnet
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.5, <4
Description-Content-Type: text/markdown
