Metadata-Version: 2.1
Name: pydeck-earthengine-layers
Version: 1.2.1
Summary: Pydeck wrapper for use with Google Earth Engine
Home-page: https://github.com/UnfoldedInc/earthengine-layers/blob/master/py
Author: Kyle Barron
Author-email: kyle@unfolded.ai
License: MIT license
Description: # pydeck-earthengine-layers
        
        Pydeck wrapper for use with Google Earth Engine
        
        ## Install
        
        ```bash
        pip install pydeck-earthengine-layers
        ```
        
        This also ensures [pydeck](https://pydeck.gl/) is installed. If you haven't
        previously enabled pydeck to be used with Jupyter, follow [its
        instructions](https://pydeck.gl/installation.html) to install.
        
        ## Using
        
        For an example, see the
        [`examples/Introduction.ipynb`](https://raw.githubusercontent.com/UnfoldedInc/earthengine-layers/master/py/examples/Introduction.ipynb) Jupyter Notebook.
        
        ## Release notes
        
        To release, bump the version by running:
        
        ```bash
        bumpversion patch
        // or
        bumpversion minor
        ```
        
        Then create a dist bundle with:
        
        ```bash
        python setup.py sdist
        ```
        
        Then upload to PyPI with
        
        ```bash
        twine upload dist/pydeck-earthengine-layers-0.1.0.tar.gz
        ```
        
        replacing with the current version number.
        
        
        # Changelog
        
        This is the Changelog for the Python `pydeck_earthengine_layers` package.
        There's a separate "What's New" page that covers JavaScript changes.
        
        ## 1.2.1 (2020-09-10)
        
        - Bump JavaScript bundle used by pydeck to `1.2.1`. This in turn bumps the `earthengine-api` dependency to `^0.1.234`.
        
        ## 1.2.0 (2020-08-19)
        
        - New `EarthEngineTerrainLayer` exposed through Pydeck. Allows for visualizing EarthEngine `Image` objects over 3D terrain
        - Reduced positional arguments. For the `EarthEngineLayer`, only `ee_object` and `vis_params` may be positional arguments; all others must be keyword arguments. For the `EarthEngineTerrainLayer`, only `ee_object`, `ee_terrain_object`, and `vis_params` may be positional arguments; all others must be keyword arguments.
        - Various JavaScript-side improvements, which trickle down to Pydeck. See [What's New](/docs/whats-new) for more information.
        
        ## 1.1.0
        
        Skipped to maintain identical versions as JS bundle
        
        ## 1.0.1 (2020-08-06)
        
        - Pin JS bundle used by pydeck to `1.0.0`, since `1.1.0` upgrades the TileLayer to deck.gl 8.2 and is currently broken.
        
        ## 1.0.0 (2020-06-05)
        
        - Release in conjunction with NPM 1.0 release.
        
        ## 0.2.2 (2020-06-05)
        
        - Update Python module to point to _beta_ NPM module via unpkg for now
        
        ## 0.2.1 (2020-06-04)
        
        - Update Python module to point to released NPM module via unpkg, instead of serving directly from Github. #77
        
        ## 0.2.0 (2020-05-26)
        
        - Set `vis_params` as the second positional argument #56
        - Use a minified bundle #51
        - Option to set a custom EE Layer bundle url #31
        
        ## 0.1.1 (2020-04-27)
        
        - Include `requirements.txt` and `requirements_dev.txt` in `MANIFEST.in` to fix install.
        
        ## 0.1.0 (2020-04-23)
        
        - First release on PyPI.
        
Keywords: pydeck_earthengine_layers
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
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
