This is more of an algorithms question, but hopefully someone can help me with this. I have a line made of of latitude/longitude points and I want to create a polygon from it with some predefined thickness. So basically the polygon would have edges that run parallel to the original polyline on either side. Any thoughts on the best approach to take for this?
EDIT: My current plan is to iterate over each of the points, find the slope to the next point, then find the parallel lines to the either side and those make up the sides of the polygons. Just didn't know if there was an easier way to do it.