LoginSignup
0
0

More than 3 years have passed since last update.

Google Earth Engineでスエズ運河座礁

Posted at

概要

Google Earth Engineで、タンカーを探してみた。

写真

無題.jpg

サンプルコード

var mtSM = ee.Geometry.Point(32.5803558145989, 30.01814881097645);
var image = ee.ImageCollection('COPERNICUS/S2').filterBounds(mtSM.buffer(10000)).filterDate('2021-03-21', '2021-03-29').first();
Map.addLayer(image, {
  bands: ['B12', 'B8', 'B5'], 
  max: 4400
}, 'mtsm');
Map.centerObject(mtSM, 14);

以上。

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