ee.Feature.cutLines

Converts LineString, MultiLineString, and LinearRing geometries into a MultiLineString by cutting them into parts no longer than the given distance along their length. All other geometry types will be converted to an empty MultiLineString.

UsageReturns
Feature.cutLines(distances, maxError, proj)Feature
ArgumentTypeDetails
this: featureElementCuts the lines of this feature's default geometry.
distancesListDistances along each LineString to cut the line into separate pieces, measured in units of the given proj, or meters if proj is unspecified.
maxErrorErrorMargin, default: nullThe maximum amount of error tolerated when performing any necessary reprojection.
projProjection, default: nullProjection of the result and distance measurements, or WGS84 if unspecified.