GEE 教程:让选择的点在地图上进行显示

目录

简介

函数

filterBounds(geometry)

Arguments:

Returns: Collection

toDictionary(properties)

Arguments:

Returns: Dictionary

getInfo(callback)

Arguments:

Returns: Object

代码

结果


简介

GEE 教程:让选择的点在地图上进行显示

函数

filterBounds(geometry)

Shortcut to filter a collection by intersection with geometry. Items in the collection with a footprint that fails to intersect the given geometry will be excluded.

This is equivalent to this.filter(ee.Filter.bounds(...)).

Caution: providing a large or complex collection as the geometry argument can result in poor performance. Collating the geometry of collections does not scale well; use the smallest collection (or geometry) that is required to achieve the desired outcome.

Returns the filtered collection.

根据与几何图形的交点过滤集合的快捷方式。如果集合中的项目的足迹与给定的几

猜你喜欢

转载自blog.csdn.net/qq_31988139/article/details/143209984