宝宝大便发白是什么原因

返回指定集合中的第一个条目。百度 小手、大手,把我们与自己的母亲联系了起来。

用法返回
FeatureCollection.first()元素
参数类型详细信息
此:collectionFeatureCollection要从中选择第一个条目的集合。

示例

代码编辑器 (JavaScript)

// A global power plant FeatureCollection.
var fc = ee.FeatureCollection('WRI/GPPD/power_plants');

print('The first feature (power plant) in the collection', fc.first());

Python 设置

如需了解 Python API 和如何使用 geemap 进行交互式开发,请参阅 Python 环境页面。

import ee
import geemap.core as geemap

Colab (Python)

from pprint import pprint

# A global power plant FeatureCollection.
fc = ee.FeatureCollection('WRI/GPPD/power_plants')

print('The first feature (power plant) in the collection:')
pprint(fc.first().getInfo())