• Stars
    star
    157
  • Rank 238,399 (Top 5 %)
  • Language
    Python
  • License
    GNU General Publi...
  • Created over 6 years ago
  • Updated 5 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

HYDrologic Remote sensing Analysis for Floods Python package

hydra-floods

docs unittests License: GPL v3 PyPI version

Introduction

The Hydrologic Remote Sensing Analysis for Floods (or HYDRAFloods) is an open source Python application for downloading, processing, and delivering surface water maps derived from remote sensing data. The bases behind the tool is to provide sensor agnostic approaches to produce surface water maps. Furthermore, there are workflows that leverage multiple remote sensing dataset in conjunction to provide daily surface water maps for flood application.

Installation

The recommended way to get up and started using the hydrafloods packages is to install using pip:

pip install hydrafloods

pip should handle some of the basic dependencies such as the Earth Engine Python API that we need for the majority of the functionality. It is planned to add hydrafloods to the conda-forge channel but that is currently not completed.

To use the hydrafloods package successfully, Google Cloud and Earth Engine authentication is necessary. Tointialize the Google Cloud environment and authenticate using your credentials, run the following command:

gcloud init

To authenticate the Earth Engine Python API with your credentials, run the following:

earthengine authenticate

For more information on setup and installation of the hydrafloods package, please see the Installation Docs.

Example

To highlight a quick example of the hydrafloods API and simplicity to produce high-quality surface water maps we provide a quick example of mapping surface water using Sentinel-1 over the confluence of the Mekong and Tonle Sap rivers, which experiences frequent flooding.

# import the hydrafloods and ee package
import hydrafloods as hf
import ee
ee.Initialize()

# specify start and end time as well as geographic region to process
start_time = "2019-10-05"
end_time =  "2019-10-06"
region = ee.Geometry.Rectangle([104, 11.5, 106, 12.5 ])

# get the Sentinel-1 collection
# the hf.dataset classes performs the spatial-temporal filtering for you
s1 = hf.datasets.Sentinel1(region, start_time, end_time)

# apply a water mapping function to the S1 dataset
# this applies the "Edge Otsu" algorithm from https://doi.org/10.3390/rs12152469
water_imgs = s1.apply_func(
    hf.thresholding.edge_otsu,
    initial_threshold=-14,
    thresh_no_data=-20,
    edge_buffer=300
)

# take the mode from multiple images
# since this is just imagery from one day, it will simply mosaic the images
water_map = ee.Image(water_imgs.collection.mode())

# export the water map
hf.geeutils.export_image(
    water_map,
    region,
    "users/<YOUR_USERNAME>/water_map_example",
    scale=30,
)

(This script is complete, it should run "as is")

At the end of the script execution, there will be an Earth Engine export task running the process on the EE servers for use later in the EE platform. The resulting surface water image should look like the following figure. It should be noted that hydrafloods can scale quickly and easily by simply changing the start or end time and region to process, allowing for processing of surface water maps with minimal effort in terms of coding.

Quick Start Results

__Figure 1.__ Sentinel-1 backscatter image (left) and resulting surface water map (right) from 2019-10-05 for a region in Cambodia as in the example.

Learn more about the package throughout the documentation such as installation, the algorithms available, or setting up the package to run operationally using the CLI.

Get in touch

Contribute

Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given. Please see the Contributing Guidelines for details on where to contribute and how to get started.

License

hydrafloods is available under the open source GNU General Public License v3.0.

More Repositories

1

sentinel-1-pipeline

Sentinel 1 pipeline using SNAP GPT 7.0
Python
34
star
2

SurfaceWaterTool

A web application for the water detection algorithm using Google Earth Engine and App Engine.
Python
21
star
3

surface-water-map-unet

Python
11
star
4

ecodash

Python
9
star
5

GPM-BICO

Bias Correction Tool for GPM precipitation data
Python
9
star
6

MODIS_tools

Python scripts for NRT and historic modis flood monitoring tools
Python
8
star
7

Drought-And-Crop-Yield

REGIONAL DROUGHT AND CROP YIELD INFORMATION SYSTEM (RDCYIS)
JavaScript
7
star
8

landcoverPortal

simple example of landcover portal
JavaScript
6
star
9

Jupyter-arcpy

Setting Up Jupyter notebooks for ArcGIS
6
star
10

hydrafloodviewer

HTML
5
star
11

LandCoverMonitoring

Python
4
star
12

ClimateSERV_CHIRPS-GEFS

Automatic extraction of CHIRPS-GEFS rainfall forecast data using ClimateSERV
Python
4
star
13

tensorFlowModels

Repository to store ee Tensorflow models
Python
4
star
14

Jupyter-gee

Jupyter Notebook
4
star
15

Virtual-Rain

Python
3
star
16

ST-CORA

Spatiotemporal Object-based Rainfall Analysis
Python
3
star
17

JRCFloodToolDjango

Historical Flood Analysis Tool
Python
3
star
18

Jupyter-MachineLearning

Generic ML library
Jupyter Notebook
2
star
19

hydrafloodstool

HTML
2
star
20

rlcms

Hosting repository for the RLCMS methodology and code using GEE
2
star
21

AirQuality

Air Quality Study for Mekong Region
JavaScript
2
star
22

SARFD

version 2 of the forest alert system using an EfficientNet
Python
1
star
23

harmonicTrend

Python
1
star
24

landcoverPackage

pip package to import land cover tool
Python
1
star
25

Dam_Inundation

This ARCGIS tool calculates potential dam Inundation extents
1
star
26

GIT-Mekong-Info

General Information Related to Geospatial Information Technology of SERVIR-Mekong Team
1
star
27

Eco-Dashboard

biophysical earth engine app
Python
1
star
28

tethysapp-hydraviewer

HYDrologic Remote sensing Analysis Viewer Application
HTML
1
star