Google Earth Engine self-learning. Here is a collection of GEE javascript practice for myself.
- Start from the official guide and the reference: https://developers.google.com/earth-engine/#api
- Copy the script and run in the GEE code editor: https://code.earthengine.google.com/
Normalize images in imageCollection based on the minMax. One can access it by:
// import function
var imNormfunction = require('users/fsn1995/tool:imNormalization');
// apply
var imNormalized = imNormfunction.imNormalize(ImageCollection);
2. addPCA
A temporary function to apply PCA to images in imageCollection. It only returns pc1-pc3 for now and will be updated later.
// import function
var imPCAfunction = require('users/fsn1995/tool:imPCA');
// apply PCA, bands are the selected bands to apply PCA
var imPCA = imPCAfunction.imPCA(ImageCollection,bands);
1. Mean Annual Temperature/Precipitation - Noah
3. Visualization of Global Product
4. koppen climate classification
This script computes, displays and exports the mean annual temperature, mean annual precipitation. The selected dateset is NOAH Global Land Assimulation System data.
- The temporal resolution is 3 hours (8 bands per day). Note: the unit of precipitation rate (kg/m^2/s) equals mm/s and is converted by the script. More about the data can be found at:
- https://developers.google.com/earth-engine/datasets/catalog/NASA_GLDAS_V20_NOAH_G025_T3H
- https://developers.google.com/earth-engine/datasets/catalog/NASA_GLDAS_V021_NOAH_G025_T3H
2. GRACE
This script displays the long term average GRACE (the Gravity Recovery and Climate Experiment) data.
This part aims to visualize some of the global product in the GEE's dataset.
Explore the global surface product provided by EC JRC/Google.
3.1.1 Global Water
It would display the global surface water dynamics in your area of interest.
It creates a dateslider to check the monthly or annual water classification .
3.1.3 Global Urban
This script utizes the GHSL: Global Human Settlement Layers, Built-Up Grid 1975-1990-2000-2015 (P2016) data.
3.2 Fire Viewer
It displays the maximum extent of fire events during the study period at specified country. This was used to assist ICRC GIS officers from Lebanon to locate wildfires. The polygons of fire events can be exported via google drive.
The data is provided by NASA / LANCE / EOSDIS (FIRMS: Fire Information for Resource Management System)
This script displays The Köppen-Geiger climate map with a spatial resolution of 5 arc minutes for the period of 1986-2010. The legend will be displayed in the console.
- http://koeppen-geiger.vu-wien.ac.at/
- Link to the shared data: https://code.earthengine.google.com/?asset=users/fsn1995/Global_19862010_KG_5m
This script performs Mann-kendall's test to the MODIS NDVI product. The result can be used to indicate the long-term trend of global vegetation (green) trend.
A quick overview of the unsupervised classification with high resolution imagery (Planet Lab).
A tool to visualize flooded area and summarize the time series of area changes. A video of all the available sentinel 1 images can be exported to google drive.
A simple practice of calculating terrain products (slope, aspect, hillshade) and export shapefile of different slope zones.
This is just a quick solution to batch upload via the command line tool. It creates a text file with the commands to upload images from google cloud storage bucket and the other text file for defining the timestamp of each image. You will need to install earthengine-api first. Note: Just discovered that each user can only upload maximum 10k images. Ref: https://developers.google.com/earth-engine/command_line
- AWESOME geetools by @author: Rodrigo E. Principe https://github.com/fitoprincipe/geetools-code-editor/wiki
- gee community: https://github.com/gee-community/
- how to add a legend? https://mygeoblog.com/2016/12/09/add-a-legend-to-to-your-gee-map/
- how to add a gradient legend? https://mygeoblog.com/2017/03/02/creating-a-gradient-legend/