GEE: Some nice visualization parameters on GEE

Author: CSDN @ _Yakult_

For ease of use, several visualization parameters are summarized.



1. Continuous type

1.1
var phenoPalette = ['ff0000','ff8d00','fbff00','4aff00','00ffe7','01b8ff','0036ff','fb00ff']

insert image description here

1.2
var evapotranspirationVis = {
    
    
  min: 0.0,
  max: 300.0,
  palette: [
    'ffffff', 'fcd163', '99b718', '66a000', '3e8601', '207401', '056201',
    '004c00', '011301'
  ],
};

insert image description here

1.3
var Single_bandVisParam = {
    
      
  min: 0,  
  max: 1,  
  palette: ['C2523C','F2B60E','77ED00','1BAA7D','0B2C7A',]
}; 

insert image description here

1.4
var palette = 'blue, white, green';

insert image description here

1.5
 palette: 'green, blanchedalmond,orange,black '

insert image description here

Two, discrete

2.1
var dwVisParams = {
    
    
min: 0,
max: 8,
palette: ['#419BDF', '#397D49', '#88B053', '#7A87C6',
'#E49635', '#DFC35A', '#C4281B', '#A59B8F', '#B39FE1']
};

insert image description here

Disclaimer:
As an author, I attach great importance to my own works and intellectual property rights. I hereby declare that all my original articles are protected by copyright law, and no one may publish them publicly without my authorization.
My articles have been paid for publication on some well-known platforms. I hope readers can respect intellectual property rights and refrain from infringement. Any free or paid (including commercial) publishing of paid articles on the Internet without my authorization will be regarded as a violation of my copyright, and I reserve the right to pursue legal responsibility.
Thank you readers for your attention and support for my articles!

Guess you like

Origin blog.csdn.net/qq_35591253/article/details/131612091