LoginSignup
1
0

More than 3 years have passed since last update.

Google Earth Engineで夜間光

Posted at

概要

Google Earth Engineで夜間光、やって見た。

写真

image.png

 

サンプルコード


var dataset = ee.ImageCollection('NOAA/DMSP-OLS/NIGHTTIME_LIGHTS').filter(ee.Filter.date('2013-01-01', '2013-12-31'));
var nighttimeLights = dataset.select('avg_vis');
var nighttimeLightsVis = {
  min: 3.0,
  max: 60.0,
};
Map.setCenter(140.82, 38.1, 5);
Map.addLayer(nighttimeLights, nighttimeLightsVis, 'Nighttime Lights');




以上。

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