A sequence of point coordinates referring to the line segments connecting them, as used to represent a one-dimensional feature or object.
6
votes
3answers
327 views
How to generate geodesic linestring from two points in C#
I'm looking for a FREE C# class, library or set of functions that will allow me to generate a geodesic linestring (or array of vertices, whatever) from two decimal degree points.
I've found ...
6
votes
2answers
185 views
How to add vertices to existing linestrings?
If I have
Linestring(1 2, 1 5, 1 9)
and a
Point(1 3)
Is there any function that can merge linestring and point preserving the order
so output would be:
Linestring(1 2, 1 3, 1 5, 1 9)
2
votes
1answer
299 views
Redistribute linestring vertices to specified distance
I use a groundwater model program called GMS, and it has a very useful function "Redistribute vertices" (more info). I use this function all the time to both simplify and provide regular spacings ...