问题:
How to create a chart with 5 rows and 2 columns like this in google earth engine
如何在谷歌地球引擎中创建一个5行2列的图表,如图所示:
Class Name | Area
Barren | 123
Urban | 456
Water | 789
Vegetation | 123
其实我们只需要做
创建一个特征集合(fc),其中包含作为属性的列值,然后使用类似下面的东西。
- var chart = ui.Chart.feature.byProperty(fc, ['Class Name', 'Area']);
- chart.setChartType('Table');
这里我们首先了解一下函数:
ui.Chart.feature.byProperty(features, xProperties, seriesProperty)
从一组特征中生成一个图表。绘制一个或多个特征的属性值。
X轴 = 属性名称,由xProperties标记(默认:所有属性)。
Y轴 = 属性值(必须是数字)。
系列=特征,由系列属性(seriesProperty)标示(默认