Metadata-Version: 2.1
Name: worldview_dl
Version: 0.1.0
Summary: Download utility for NASA WorldView
Home-page: https://github.com/leifdenby/worldview_dl
Author: Leif Denby
Author-email: leif@denby.eu
License: MIT license
Description: # Download tool for NASA WorldView
        
        ![](docs/GOES_2020-01-28T16:10:00+00:00.png)
        
        ## Installation
        
        ```bash
        > pip install worldview_dl
        ```
        
        ## Usage
        
        You may either download using the command line cli:
        
        ```bash
        usage: cli.py [-h] [--layers LAYERS [LAYERS ...]] [--image_type IMAGE_TYPE]
                      [--resolution RESOLUTION]
                      time bbox
        ```
        
        for example
        
        ```bash
        > python -m worldview_dl.cli "2020-01-28 16:20" 10.,-60.,15.,-50. --image_type png
        ```
        
        Or with the python package
        
        ```python
        from worldview_dl import download_image
        import datetime
        import pytz
        
        t_now = datetime.datetime.now().replace(tzinfo=pytz.utc)
        t = t_now - datetime.timedelta(hours=2)
        
        download_image(
            fn="GOES_test.png",
            time=t,
            bbox=[10.,-60.,15.,-50.],
            layers=['GOES-East_ABI_Band2_Red_Visible_1km', 'Reference_Labels'],
            image_format="png",
            resolution=0.01,
        )
        ```
        
Keywords: worldview_dl
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
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
Requires-Python: >=3.5
Description-Content-Type: text/markdown
