LoginSignup
0
0

More than 1 year has passed since last update.

Google Earth Engineでトンガ噴火

Posted at

概要

Google Earth Engineで、トンガ噴火を探してみた。

写真

image.png

サンプルコード

var collection = ee.ImageCollection('COPERNICUS/S5P/OFFL/L3_AER_AI')
  .select('absorbing_aerosol_index')
  .filterDate('2022-01-13', '2022-01-15');

var band_viz = {
  min: -1,
  max: 2.0,
  palette: ['black', 'blue', 'purple', 'cyan', 'green', 'yellow', 'red']
};

Map.addLayer(collection.mean(), band_viz, 'S5P Aerosol');
Map.setCenter(-175.382, -20.536, 8);


以上。

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0