Stay organized with collections
Save and categorize content based on your preferences.
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
BBox.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.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2024-06-05 UTC."],[[["The `cutLines` method divides LineString, MultiLineString, and LinearRing geometries into smaller segments based on specified distances."],["This method converts the input geometry into a MultiLineString consisting of the divided segments, using the provided projection and error margin for calculations."],["Geometries other than LineString, MultiLineString, and LinearRing will result in an empty MultiLineString when using this method."],["Distances for cutting lines are measured in units of the specified projection or meters if no projection is defined."]]],["The `cutLines` method transforms LineString, MultiLineString, and LinearRing geometries into a MultiLineString by dividing them into segments based on specified distances. The `distances` argument defines these cutting points along each line, with the `proj` argument determining the units (defaulting to meters or EPSG:4326 if not provided). `maxError` sets the acceptable error for reprojection. Other geometry types are converted to an empty MultiLineString. This function returns a Geometry object.\n"]]