Expand description

Split a LineString into n segments

Traits§

  • Segments a LineString into n equal length LineStrings as a MultiLineString. None will be returned when n is equal to 0 or when a point cannot be interpolated on a Line segment.
  • Segments a LineString into n equal length LineStrings as a MultiLineString using Haversine distance calculations. Use this over LineStringSegmentize when using data from a geographic coordinate system. None will be returned when n is equal to 0 or when a point cannot be interpolated on a Line segment.