View on GitHub

Fun-with-Google-Earth-Engine

Google Earth Engine practice

HitCount

Fun with GEE

Google Earth Engine self-learning. Here is a collection of GEE javascript practice for myself.

Tools

1. Image normalization

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);

Exercises:

1. Mean Annual Temperature/Precipitation - Noah

2. GRACE

3. Visualization of Global Product

4. koppen climate classification

5. Trend Analysis

6. Urban landcover

7. Flood mapping

8. dem terrain calculator

1. Mean Annual Temperature/Precipitation - Noah

This script computes, displays and exports the mean annual temperature, mean annual precipitation. The selected dateset is NOAH Global Land Assimulation System data.