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.
Usage | Returns |
---|
Feature.cutLines(distances, maxError, proj) | Feature |
Argument | Type | Details |
---|
this: feature | Element | Cuts the lines of this feature's default geometry. |
distances | List | Distances along each LineString to cut the line into separate pieces, measured in units of the given proj, or meters if proj is unspecified. |
maxError | ErrorMargin, default: null | The maximum amount of error tolerated when performing any necessary reprojection. |
proj | Projection, default: null | Projection of the result and distance measurements, or EPSG:4326 if unspecified. |
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-06-05 UTC.
[null,null,["Last updated 2024-06-05 UTC."],[[["The function `cutLines` converts LineString, MultiLineString, and LinearRing geometries into a MultiLineString by segmenting them into shorter lengths."],["Segmentation is determined by the `distances` parameter, specifying the length of each segment in the projection units or meters."],["Geometries other than LineString, MultiLineString, and LinearRing are converted into an empty MultiLineString."],["Users can specify the `maxError` for reprojection and the `proj` for distance measurements and output projection."]]],["The core functionality involves cutting `LineString`, `MultiLineString`, and `LinearRing` geometries into segments based on specified distances. The `cutLines` method, applied to a `Feature`, takes a list of `distances` and divides the line into parts no longer than those distances. `maxError` handles reprojection errors, while `proj` defines the projection for distance measurements, defaulting to EPSG:4326. Other geometry types become empty `MultiLineString`s.\n"]]