ee.Geometry.MultiPoint.buffer

返回按指定距离缓冲的输入。如果距离为正值,则几何图形会扩大;如果距离为负值,则几何图形会缩小。

用法返回
MultiPoint.buffer(distance, maxError, proj)几何图形
参数类型详细信息
此:geometry几何图形要缓冲的几何图形。
distance浮点数缓冲的距离,可能为负值。如果未指定投影,则单位为米。否则,单位将采用投影的坐标系。
maxErrorErrorMargin,默认值:null在近似计算缓冲区圆和执行任何必要的重新投影时,可容忍的最大误差量。如果未指定,则默认为距离的 1%。
proj投影,默认值:null如果指定,则缓冲将在此投影中执行,并且距离将解释为此投影的坐标系单位。否则,距离将被解读为米,并且缓冲将在球面坐标系中执行。

示例

代码编辑器 (JavaScript)

// Define a MultiPoint object.
var multiPoint = ee.Geometry.MultiPoint([[-122.082, 37.420], [-122.081, 37.426]]);

// Apply the buffer method to the MultiPoint object.
var multiPointBuffer = multiPoint.buffer({'distance': 100});

// Print the result to the console.
print('multiPoint.buffer(...) =', multiPointBuffer);

// Display relevant geometries on the map.
Map.setCenter(-122.085, 37.422, 15);
Map.addLayer(multiPoint,
             {'color': 'black'},
             'Geometry [black]: multiPoint');
Map.addLayer(multiPointBuffer,
             {'color': 'red'},
             'Result [red]: multiPoint.buffer');

Python 设置

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

import ee
import geemap.core as geemap

Colab (Python)

# Define a MultiPoint object.
multipoint = ee.Geometry.MultiPoint([[-122.082, 37.420], [-122.081, 37.426]])

# Apply the buffer method to the MultiPoint object.
multipoint_buffer = multipoint.buffer(distance=100)

# Print the result.
display('multipoint.buffer(...) =', multipoint_buffer)

# Display relevant geometries on the map.
m = geemap.Map()
m.set_center(-122.085, 37.422, 15)
m.add_layer(multipoint, {'color': 'black'}, 'Geometry [black]: multipoint')
m.add_layer(
    multipoint_buffer, {'color': 'red'}, 'Result [red]: multipoint.buffer'
)
m