Google Earth Engine(GEE)——全球范围内不同作物的无机肥(简称化肥)使用量

按作物和国家划分的全球化肥使用情况
了解国家、地区和全球范围内不同作物的无机肥(简称化肥)使用量是化肥消费分析和需求预测的重要组成部分。由于难以收集,处理和验证也很费时,所以很少有关于作物用肥(FUBC)的良好信息。为了填补这一空白,1992年,根据联合国粮食及农业组织(FAO)、国际肥料开发中心(IFDC)和国际肥料协会(IFA)联合进行的专家调查,发表了1990/1991年期间的第一份全球FUBC报告。此后,类似的专家调查在主要化肥消费国每两到四年进行并公布一次。自2008年以来,IFA领导了这些工作,据我们所知,这仍然是全球唯一可获得的关于FUBC的数据集。这个数据集包括IFA进行的调查的数据(CSV格式),代表2017-18年的情况,以及所有历史上的FUBC数据的整理。前言 – 床长人工智能教程

免责声明:数据集描述的全部或部分内容由作者或其作品提供。

数据集预处理
LSIB国家边界被用来连接表,因为主表不是地理空间的,所以在创建内部连接之前,国家名称首先被重构以匹配LSIB的名称。由于这些都是大的几何图形,连接被转换为每个特征的中心点,并作为一个特征集合导出。

论文引证

Ludemann, C.I., Gruere, A., Heffer, P. et al. Global data on fertilizer use by crop and by country. Sci Data 9, 501 (2022).
https://doi.org/10.1038/s41597-022-01592-z

数据引用:

Ludemann, Cameron; Gruere, Armelle; Heffer, Patrick; Dobermann, Achim (2022), Global data on fertilizer use by crop and by country, Dryad,
Dataset, https://doi.org/10.5061/dryad.2rbnzs7qh

Earth Engine Snippet

var LSIB = ee.FeatureCollection("USDOS/LSIB/2017"),
    fertilizer_use_ct = ee.FeatureCollection("projects/sat-io/open-datasets/global_fertilizer_use_centroid");
//Create a filter
var Filter = ee.Filter.equals({
  leftField: 'COUNTRY_NA',
  rightField: 'COUNTRY_NA'
});

var country_join = ee.Join.inner();
var country_join = country_join.apply(LSIB,fertilizer_use_ct,Filter);


function cleanJoin(feature){
  return ee.Feature(feature.get('primary')).copyProperties(feature.get('secondary'));
}

var joined = country_join.map(cleanJoin)
print('Sample fertilizer application', joined.first())

//Break down by year of publication
print('Year of publication',joined.aggregate_histogram('Year_FUBC_publication'))

//Export individual country usage to CSV
var selected = fertilizer_use_ct.filter(ee.Filter.eq('COUNTRY_NA','Canada'))
print('Total features for Country',selected.size())

Export.table.toDrive({
  collection: ee.FeatureCollection(selected),
  description:'fertilizer_country_canada',
  fileFormat: 'CSV'
});

Sample code: https://code.earthengine.google.com/?scriptPath=users/sat-io/awesome-gee-catalog-examples:agriculture-vegetation-forestry/GLOBAL-FERTILIZER-USE-CROP-COUNTRY

License

This work is licensed under a CC0 1.0 Universal (CC0 1.0) Public Domain Dedication license.

Created by: Ludemann, Cameron; Gruere, Armelle; Heffer, Patrick; Dobermann, Achim

Curated in GEE by : Samapriya Roy

keywords: Global fertilizer use, agriculture, FAO, crop

Last modified: 2022-08-22

Last updated on GEE: 2022-09-05

猜你喜欢

转载自blog.csdn.net/qq_31988139/article/details/130560199
今日推荐