Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/giswqs/geehydro
A Python package for mapping inundation dynamics using Google Earth Engine
https://github.com/giswqs/geehydro
earth-engine geoprocessing gis image-processing python remote-sensing
Last synced: 2 months ago
JSON representation
A Python package for mapping inundation dynamics using Google Earth Engine
- Host: GitHub
- URL: https://github.com/giswqs/geehydro
- Owner: giswqs
- License: mit
- Created: 2019-11-19T16:09:19.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2023-09-19T14:13:23.000Z (over 1 year ago)
- Last Synced: 2024-10-24T15:57:06.011Z (3 months ago)
- Topics: earth-engine, geoprocessing, gis, image-processing, python, remote-sensing
- Language: Python
- Homepage: https://pypi.org/project/geehydro/
- Size: 74.2 KB
- Stars: 30
- Watchers: 4
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.rst
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.rst
- License: LICENSE
- Authors: AUTHORS.rst
Awesome Lists containing this project
README
========
geehydro
========.. image:: https://img.shields.io/pypi/v/geehydro.svg
:target: https://pypi.python.org/pypi/geehydro.. image:: https://img.shields.io/conda/vn/conda-forge/geehydro.svg
:target: https://anaconda.org/conda-forge/geehydro.. image:: https://img.shields.io/travis/giswqs/geehydro.svg
:target: https://travis-ci.com/giswqs/geehydro.. image:: https://readthedocs.org/projects/geehydro/badge/?version=latest
:target: https://geehydro.readthedocs.io/en/latest/?badge=latest
:alt: Documentation StatusPython package for mapping inundation dynamics using Google Earth Engine
* PyPI: https://pypi.python.org/pypi/geehydro
* Conda-forge: https://anaconda.org/conda-forge/geehydro
* Documentation: https://geehydro.readthedocs.io
* Free software: MIT licenseImportant Note
--------------
This package is no longer being actively maintained. Please use the `geemap `__ package instead.Installation
------------The **geehydro** Python package is built upon the `folium `__ package and
implements several methods for interacting with Earth Engine data layers, such as ``Map.addLayer()``, ``Map.setCenter()``, and ``Map.centerObject()``.To install **geehydro**, run this command in your terminal:
.. code:: python
pip install geehydro
**geehydro** is also available on `conda-forge `__. If you have Anaconda_ or Miniconda_ installed on your computer, you can create a conda Python environment to install geehydro:
.. code:: python
conda create -n gee python
conda activate gee
conda install -c conda-forge geehydroIf you have installed **geehydro** before and want to upgrade to the latest version, you can run the following command in your terminal:
.. code:: python
pip install -U geehydro
To install the development version from GitHub, run the following command in your terminal:
.. code:: python
pip install git+https://github.com/giswqs/geehydro
.. _Anaconda: https://www.anaconda.com/distribution/#download-section
.. _Miniconda: https://docs.conda.io/en/latest/miniconda.html