How can I split a LINESTRING into two LINESTRINGs at a given point?
- by sabbour
Hello,
I'm trying to write a function that will split a LINESTRING into two LINESTRINGs given the split point. What I'm trying to achieve is a function that given a LINESTRING and a distance, it will return N LINESTRINGS for the original linestring splitted at multiples of that distance.
This is what I have so far (I'm using SQL Server Spatial…