几何图形有太多边缘(Google Earth Engine)。帮我

unk*_*123 2 google-earth-engine

在此输入图像描述

我在使用 Google Earth Engine 时遇到问题。我正在处理一些矢量文件。我得到以下代码:

jdb*_*ode 5

几何体有太多顶点。您可以尝试使用以下方法来简化它:

// Get a feature collection and subset the first feature.
var feature = ee.FeatureCollection("TIGER/2018/States").first();

// Simplify the feature - think of max error as resolution.
// Setting to 100 means that the geometry is accurate to
// within 100 meters, for example.
var featureSimple = ee.Feature(feature).simplify({maxError: 100});
Run Code Online (Sandbox Code Playgroud)

或对于ee.FeatureCollection

// Get a feature collection.
var featureCol = ee.FeatureCollection("TIGER/2018/States");

// Simplify each feature in the collection, by mapping the
// .simplify() function over it. 
var simplifiedCol = featureCol.map(function(feature) {
  return feature.simplify({maxError: 100});
});
Run Code Online (Sandbox Code Playgroud)