0% found this document useful (0 votes)
26 views11 pages

EEZG612 - Lecture5 - 6 - Google Earth Engine-1

The document is a lecture on Google Earth Engine (GEE) for environmental monitoring, covering topics such as data catalogues, basics of GEE, and land cover classification. It includes technical details on using the GEE API to filter and display satellite images, including true and false color composites. The lecture is part of a course at BITS Pilani, led by Dr. Prakash Mohan.

Uploaded by

anandswarup
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
26 views11 pages

EEZG612 - Lecture5 - 6 - Google Earth Engine-1

The document is a lecture on Google Earth Engine (GEE) for environmental monitoring, covering topics such as data catalogues, basics of GEE, and land cover classification. It includes technical details on using the GEE API to filter and display satellite images, including true and false color composites. The lecture is part of a course at BITS Pilani, led by Dr. Prakash Mohan.

Uploaded by

anandswarup
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 11

BITS Pilani

Pilani Campus

EE ZG612, Environmental Remote


Sensing and GIS
Lecture No.5
Google Earth Engine
BITS Pilani Dr. Prakash Mohan
Pilani Campus
Today’s Topic: Introduction

Topic Topic Title Reference


No.
4.1 Google earth engine (GEE) for Lecture slides
Environmental monitoring
4.2 Earth engine data catalogue for Lecture slides
environmental monitoring
4.3 Lecture slides
Basics of GEE
4.4 Land cover classification and change Lecture slides
detection using GEE.

BITS Pilani, Pilani Campus


Radiance and Spectral Radiance

BITS Pilani, Pilani Campus


Left Panel

BITS Pilani, Pilani Campus


Code Editor

BITS Pilani, Pilani Campus


Right Panel

BITS Pilani, Pilani Campus


Displaying a satellite image from a collection

var collection = ee.ImageCollection("LANDSAT/LC09/C02/T1_TOA")

'ee.ImageCollection' is a class in Google Earth Engine's API (Application Programming Interface)


that represents a collection of geospatial images .

An image collection refers to a set of Earth Engine images. For example, the collection of all
Landsat 9 images is an ee.ImageCollection

Filtering image collections

The way to limit the collection by time or space is by filtering it.

filterBounds(), filterDate() and filter() methods on image collections to narrow down the
selections

BITS Pilani, Pilani Campus


Displaying a satellite image with its ID

Selecting a single image of Landsat 9

To display a single image ee.Image() function is used to display an image with its ID.
No other filtration parameters are required here

BITS Pilani, Pilani Campus


Displaying True Color Composite

Selecting the band combinations

To get the TCC, the band details for RGB display channels specified

BITS Pilani, Pilani Campus


Displaying False Color Composite

Selecting the band combinations

To get the FCC, the band details for RGB display channels specified

BITS Pilani, Pilani Campus

You might also like