Awesome
Change Detection with Google Earth Engine Imagery
A simple Flask web application for performing change detection tasks with <a href="https://developers.google.com/earth-engine/">Google Earth Engine</a> imagery.
The <a href="http://ms-image-analysis.appspot.com/static/index.html">AppEngine version</a> (web version) is for demonstration only and has very limited functionality. Exporting results to Google Drive or to Earth Engine assets is in particular not possible.
The local version runs in a Docker container serving the Flask web application on localhost:5000. Assuming you have been authenticated (see below) to the Earth Engine, you can carry out the following tasks:
-
Run the iMAD (iteratively re-weighted MAD) algorithm on Landsat 5, 7, 8 and Sentinel-2 optical/infrared bitemporal imagery.
<a href="http://www2.imm.dtu.dk/pubdb/views/publication_details.php?id=4695"> A. A. Nielsen (2007). The Regularized Iteratively Reweighted MAD Method for Change Detection in Multi- and Hyperspectral Data.</a><a href="http://www.amazon.com/Analysis-Classification-Change-Detection-Sensing/dp/1466570377/ref=dp_ob_title_bk"> M. J.Canty (2014). Image Analysis, Classification and Change Detection in Remote Sensing, 3rd Ed., CRC Press 2014</a>;
-
Perform automatic radiometric normalization of a sequence full optical/infrared scenes.
<a href="http://www2.imm.dtu.dk/pubdb/views/publication_details.php?id=5362"> M. J. Canty and A. A. Nielsen (2008). Automatic Radiometric Normalization of Multitemporal Satellite Imagery with the Iteratively Re-weighted MAD Transformation.</a> -
Run the (sequential) omnibus algorithm on polarimetric SAR multitemporal data on Sentinel-1 dual pol, diagonal only, or single pol images.
<a href = "http://www2.imm.dtu.dk/pubdb/views/publication_details.php?id=6825"> K. Conradsen et al. (2016). Determining the points of change in time series of polarimetric SAR data. IEEE TGRS 54 (5) 3007-3024.</a> -
Perform principal components analysis in visual/infrared full scenes.
-
Export imagery to your Earth Engine assets folder or to Google Drive for off-line local processing, for example with <a href="http://mortcanty.github.io/SARDocker/"> SARDocker</a>.
Installation and execution
-
Install <a href="https://docs.docker.com/">Docker</a>
-
In a command window execute the command
docker run -it -p 5000:5000 --name=ee mort/eedocker
or, if you are on a Raspberry Pi
docker run -it -p 5000:5000 --name=ee mort/rpi-eedocker
-
If the container is not found it will be automatically downloaded from Dockerhub and started. At the container prompt execute the command
earthengine authenticate
and follow the instructions. You will have to copy the given URL and paste it into your local browser.
-
After successful authentication the credentials are saved to the container. Now run the command
./app.py
and point your browser to
localhost:5000
to start work.
-
When finished, hit
Ctrl C
in the command window to stop the Flask application server and
exit
to leave the container. The container will then stop.
-
Re-start and enter the container with
docker start -ai ee
-
Run the command
./app.py
to re-start the server.