0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

GEEのオリジナル背景を作成する

Last updated at Posted at 2017-12-21

GEEデフォルトではGoogle Mapsの画面が背景になりますが、
任意で作成することが可能です。

例えばこんな感じ。標高を強調しています。



var elv = ee.Image('NOAA/NGDC/ETOPO1');
var Ter = elv.select(0).gte(0);
var shade = ee.Terrain.hillshade(elv.select(0)).mask(Ter);
Map.addLayer(shade, {min:170, max:300, gamma:1.5}, 'hillshade');

var style = {
  'Deep': [{
      featureType: 'all',
      stylers: [{ color: '#708090'}]
  }]
};

image.png

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?