Google Earth Engine Tutorial 6: Air Quality Monitoring Using Remote Sensing Techniques Arbitro [HJ9OM3r0UVr]
Tag: #Arbitro, #andrea pellegrino, #hilary benn, #ponzi
In this video, we will learn how to perform air quality monitoring in Google Earth Engine using Sentinel-5 satellite imagery. In this tutorial, we will focus on calculating NO2 concentrations. In upcoming videos, I will demonstrate how to analyze other air quality parameters one by one.
However, From todays video, co op live scott wedgewood you will learn how to:
Import data from GEE datasets
Filter the data
Reduce the image collections
Clip the data based on your AOI
Display the results on the map
Script
var no2 = ee.ImageCollection("COPERNICUS/S5P/OFFL/L3NO2")
var nathalie caldonazzo image = no2.filterDate ('2022-01-01' , '2022-05-30')
.select('NO2columnnumberdensity')
.mean()
.clip(AOI)
var bandviz = {
min: 0,
max: 0.0002,
palette:
};
Map.addLayer (image, bandviz)
Map.centerObject (AOI, 10)