前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >GEE图表:以全球生物多样性的数据集进行直方图表的构建

GEE图表:以全球生物多样性的数据集进行直方图表的构建

作者头像
此星光明
发布2024-10-23 08:34:00
1080
发布2024-10-23 08:34:00
举报

简介

ECOREGIONS/2017是一个关于全球生物多样性的数据集,由世界自然基金会(World Wildlife Fund)和美国环境保护署(U.S. Environmental Protection Agency)联合发布。该数据集将全球陆地划分为867个生态区域,以反映不同地理和环境条件下的生物多样性。

每个生态区域都具有独特的生物组成和生态系统特征,这些特征反映了该地区的气候、土壤、植被等因素对生物多样性的影响。ECOREGIONS/2017数据集使用了广泛的地理和生态数据源,包括陆地和水域的信息,以进行生态区划。

该数据集提供了各个生态区域的边界、名称以及详细的描述,包括主要的植被类型、动物群落、物种多样性等信息。此外,还提供了各个生态区域的面积、保护状况和关键的环境压力等指标。

ECOREGIONS/2017数据集的目的是帮助研究人员、保护管理者和决策者更好地了解全球生物多样性的分布和保护需求,以制定更有效的保护策略。该数据集可以用于生物多样性保护规划、环境管理、生态系统服务评估等方面的研究和决策支持。

函数

ui.Chart.feature.histogram(features, property, maxBuckets, minBucketWidth, maxRaw)

Generates a Chart from a set of features. Computes and plots a histogram of the given property.

  • X-axis = Histogram buckets (of property value).
  • Y-axis = Frequency (i.e. the number of features whose value of property lands within the x-axis bucket bounds).

Returns a chart.

Arguments:

features (Feature|FeatureCollection|List<Feature>):

The features to include in the chart.

property (String):

The name of the property to generate the histogram for.

maxBuckets (Number, optional):

The maximum number of buckets to use when building a histogram; will be rounded up to a power of 2. Not used when the value of property is non-numeric.

minBucketWidth (Number, optional):

The minimum histogram bucket width, or null to allow any power of 2. Not used when property is non-numeric.

maxRaw (Number, optional):

The number of values to accumulate before building the initial histogram. Not used when property is non-numeric.

Returns: ui.Chart

代码

代码语言:javascript
复制
// 绘制世界生态区生物群落名称柱状图。

var ecoregions = ee.FeatureCollection('RESOLVE/ECOREGIONS/2017');

// 准备图表。 指定 minBucketWidth 可以获得较好的水桶尺寸。
var histogram =
    ui.Chart.feature
        .histogram(
            {features: ecoregions, property: 'BIOME_NAME', minBucketWidth: 300})
        .setOptions({title: 'Histogram of Ecoregion Biomes'});

print(histogram);

Map.addLayer(ecoregions);
Map.setCenter(0, 0, 2);

结果

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2024-10-22,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • 简介
  • 函数
    • ui.Chart.feature.histogram(features, property, maxBuckets, minBucketWidth, maxRaw)
      • Arguments:
      • Returns: ui.Chart
  • 代码
  • 结果
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档