Is there any way to work with self-overlapping lines in SQL Server? SQL Server says that it is invalid geometry and when I use STMakeValid I get MultiLinestring but I don't want that. I have data with self-overlapping lines and so I need it...
It is just self-overlaping line like:
LINESTRING(0 0, 3 3, 2 1, 2 2, 1 1)
I just want to use spatial methods in SQL Server on this line if it is possible.