LoginSignup
1
0

More than 3 years have passed since last update.

Google Earth Engineでオーストラリア火災

Last updated at Posted at 2020-09-21

概要

Google Earth Engineで、オーストラリア火災を探してみた。

写真

無題.jpg

サンプルコード

var po = ee.Geometry.Point(137.50, -35.793);
Map.centerObject(po, 9);
var image = ee.ImageCollection('COPERNICUS/S2').filterBounds(po.buffer(20000)).filterDate('2019-12-31', '2020-01-04');
Map.addLayer(image.first(), {
    bands: ['B12', 'B8', 'B5'],
    max: 4400
}, 'fire');

以上。

1
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
1
0