Google Earth EngineでNO2
概要
Google Earth EngineでNO2、やって見た。
covid-19のロックダウンでNO2が減ったか、5月の第一週を去年と比較表示。
参考にしたページ
写真
サンプルコード
var collection = ee.ImageCollection('COPERNICUS/S5P/NRTI/L3_NO2').select('NO2_column_number_density');
var collection_2019 = collection.filterDate('2019-05-01', '2019-05-07').mean();
var collection_2020 = collection.filterDate('2020-05-01', '2020-05-07').mean();
var band_viz = {
min: 0,
max: 0.0002,
palette: ['black', 'blue', 'purple', 'cyan', 'green', 'yellow', 'red'],
opacity: 0.5
};
//Map.addLayer(collection_2019, band_viz, 'S5P N02 2019');
//Map.addLayer(collection_2020, band_viz, 'S5P N02 2020');
Map.setCenter(137, 36, 5);
var diff = collection_2019.subtract(collection_2020);
Map.addLayer(diff, band_viz, 'diff no2');
var collection = ee.ImageCollection('COPERNICUS/S5P/NRTI/L3_NO2').select('NO2_column_number_density');
var collection_2019 = collection.filterDate('2019-05-01', '2019-05-07').mean();
var collection_2020 = collection.filterDate('2020-05-01', '2020-05-07').mean();
var band_viz = {
min: 0,
max: 0.0002,
palette: ['black', 'blue', 'purple', 'cyan', 'green', 'yellow', 'red'],
opacity: 0.5
};
//Map.addLayer(collection_2019, band_viz, 'S5P N02 2019');
//Map.addLayer(collection_2020, band_viz, 'S5P N02 2020');
Map.setCenter(137, 36, 5);
var diff = collection_2019.subtract(collection_2020);
Map.addLayer(diff, band_viz, 'diff no2');
以上。
Author And Source
この問題について(Google Earth EngineでNO2), 我々は、より多くの情報をここで見つけました https://qiita.com/ohisama@github/items/fce320e89537ddabadb2著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .