其他分享
首页 > 其他分享> > Google Earth Engine(GEE)——在GEE中使用paint

Google Earth Engine(GEE)——在GEE中使用paint

作者:互联网

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: collating the geometries of complex FeatureCollection inputs can be slow and memory intensive.

Returns the filtered collection.

Arguments:

this:collection (Collection):

The Collection instance.

geometry (ComputedObject|FeatureCollection|Geometry):

The geometry, feature or collection to intersect with.

Returns: Collection

toByte()

Casts the input value to an unsigned 8-bit integer.

将输入值转换为一个无符号的8位整数。

Arguments:

this:value (Image):

The image to which the operation is appli

标签:Engine,Google,geometry,collection,filter,Returns,Collection,GEE,Arguments
来源: https://blog.csdn.net/qq_31988139/article/details/121107406