Need to take a linestring and find a coord every x meters along the line. I tried using the SQL Server Spatial Tools and found .NET to be slow and after 5(ish) days of processing, SQL server (or .NET) just stops working.
I'm moving away from .NET to a native approach and still use SQL Server for its multi-threaded capabilities. I found boost and want to use it in place of .NET's geometry type, but I don't have the skill to create an algorithm that would find the coordinate along a linestring every x meters. I'm looking for said algorithm. Does anyone have a tip/pointer to what I could use?