GEE数据集:全球土壤盐度数据集(1986-2016)

举报
此星光明 发表于 2023/03/04 05:58:28 2023/03/04
【摘要】 ​全球土壤盐度图(1986-2016)该数据集包括1986、1992、2000、2002、2005、2009和2016年的全球土壤盐度层。这些地图是用一个随机森林分类器生成的,该分类器是用七个土壤属性图、热红外图像和WoSIS数据库中的ECe点数据进行训练的。所得地图的验证准确率在67-70%之间。根据我们的评估,受盐影响的土地总面积约为10亿公顷,并有明显的增长趋势。进一步的细节在一篇同行...

全球土壤盐度图(1986-2016)
该数据集包括1986、1992、2000、2002、2005、2009和2016年的全球土壤盐度层。这些地图是用一个随机森林分类器生成的,该分类器是用七个土壤属性图、热红外图像和WoSIS数据库中的ECe点数据进行训练的。所得地图的验证准确率在67-70%之间。根据我们的评估,受盐影响的土地总面积约为10亿公顷,并有明显的增长趋势。进一步的细节在一篇同行评议的期刊文章中提供(https://doi.org/10.1016/j.rse.2019.111260)。这个数据集的主要数据页可以在这里找到,还有VRT和tiff文件的链接。

文献:

Ivushkin, Konstantin, Harm Bartholomeus, Arnold K. Bregt, Alim Pulatov, Bas Kempen, and Luis De Sousa. "Global mapping of soil salinity change." Remote sensing of environment 231 (2019): 111260.

 

 代码:

var soil_salinity = ee.ImageCollection("projects/sat-io/open-datasets/global_soil_salinity");


var dataset = ee.ImageCollection('MODIS/006/MOD44W')
                  .filter(ee.Filter.date('2015-01-01', '2015-05-01'));
var waterMask = dataset.select('water_mask');

// set position of panel
var legend = ui.Panel({
  style: {
    position: 'bottom-left',
    padding: '8px 15px'
  }
});
 
// Create legend title
var legendTitle = ui.Label({
  value: 'Legend',
  style: {
    fontWeight: 'bold',
    fontSize: '18px',
    margin: '0 0 4px 0',
    padding: '0'
    }
});
 
// Add the title to the panel
legend.add(legendTitle);
 
// Creates and styles 1 row of the legend.
var makeRow = function(color, name) {
 
      // Create the label that is actually the colored box.
      var colorBox = ui.Label({
        style: {
          backgroundColor: '#' + color,
          // Use padding to give the box height and width.
          padding: '8px',
          margin: '0 0 4px 0'
        }
      });
 
      // Create the label filled with the description text.
      var description = ui.Label({
        value: name,
        style: {margin: '0 0 4px 6px'}
      });
 
      // return the panel
      return ui.Panel({
        widgets: [colorBox, description],
        layout: ui.Panel.Layout.Flow('horizontal')
      });
};
 
//  Palette with the colors
var palette =['00FF00', 'FFFF00','FFA500','FF0000', '8B0000'];
 
// name of the legend
var names = ['Non saline','Slightly saline','Moderately saline','Highly saline','Extremely saline'];
 
// Add color and and names
for (var i = 0; i < 5; i++) {
  legend.add(makeRow(palette[i], names[i]));
  }  
 
// add legend to map (alternatively you can also print the legend to the console)
Map.add(legend);
Map.addLayer(soil_salinity.median().updateMask(waterMask.mosaic().eq(0)),{'min':0,'max':5,'palette':palette},'Soil salinity')

代码链接:https://code.earthengine.google.com/?scriptPath=users/sat-io/awesome-gee-catalog-examples:soil-properties/GLOBAL-SOIL-SALINITY

License

This work is licensed under the Creative Commons Attribution 4.0 International License (Creative Commons — Attribution 4.0 International — CC BY 4.0 ). Users are free to use, copy, distribute, transmit, and adapt the work for commercial and non-commercial purposes, without restriction, as long as clear attribution of the source is provided.

Created by: Ivushkin et al

Curated by: Samapriya Roy

Keywords: : salinity, digital soil mapping, electrical conductivity, global map, soilgrids, landsat, thermal, salinisation

Last updated: 2021-11-25

GEE数据集:SDA-NCSS的土壤调查数据

GEE数据集:美国大陆(CONUS)30米土壤属性概率图数据库

GEE数据集:SDA-NCSS的土壤调查数据

GEE数据集:全球土壤网格数据集

GEE数据集:加拿大高分辨率数字高程模型(HRDEM)

【版权声明】本文为华为云社区用户原创内容,转载时必须标注文章的来源(华为云社区)、文章链接、文章作者等基本信息, 否则作者和本社区有权追究责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。