ee.Geometry.Point.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 | Point.cutLines(distances, maxError, proj) | Geometry |
Argument | Type | Details | this: geometry | Geometry | Cuts the lines of this 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. |
Examples
Code Editor (JavaScript)
// Notice: the cutLines geometry method applies only to LineString,
// MultiLineString, and LinearRing geometries. All other geometry types result
// in an empty MultiLineString.
Python setup
See the
Python Environment page for information on the Python API and using
geemap
for interactive development.
import ee
import geemap.core as geemap
Colab (Python)
# Notice: the cutLines geometry method applies only to LineString,
# MultiLineString, and LinearRing geometries. All other geometry types result
# in an empty MultiLineString.
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 `cutLines` method divides LineString, MultiLineString, and LinearRing geometries into smaller segments based on specified distances."],["This method accepts a list of distances, an optional maximum error margin, and an optional projection for the output and distance measurements."],["Geometries other than LineString, MultiLineString, and LinearRing are converted into an empty MultiLineString when using the `cutLines` method."],["Distances for cutting lines are measured in units of the provided projection or meters if no projection is specified."],["If no projection is specified, the result and distance measurements will default to EPSG:4326."]]],[]]