Clear Filters
Clear Filters

Create a line with variable buffer zone

5 views (last 30 days)
Jack Naumann
Jack Naumann on 13 Dec 2017
Commented: Jack Naumann on 13 Dec 2017
Hi all,
I have been struggling with this problem for a while.
I have a series of co-ordinates, stored in an x and a y variable. This represents a (curved) path through space. I am trying to create two more paths either side of the original(at a fixed or variable distance).
My general approach so far has been to
1. Calculate the gradient at each point (m)
2. Find the inverse gradient at each point (-1/m)
3. Find the x and y components of the perpendicular distance required
4. Add or subtract these distances from each point on the original curve as necessary.
This approach works for part of the path but I'm having trouble when the path curves round on itself, my new path will jump from being on the left to the right.
I appreciate this is more of a mathematical problem than a matlab one - but I was hoping someone might have a neat solution to do this in matlab (I don't have the Mapping toolbox)
Many thanks
Jack
  2 Comments
Jan
Jan on 13 Dec 2017
Edited: Jan on 13 Dec 2017
If you post your code, it is much easier to fix it. Writing the code from scratch is much harder. The readers can e.g. not guess, how you calculate the gradient.
Jack Naumann
Jack Naumann on 13 Dec 2017
Ok, here is the rough approach I was thinking of. The gradient function isn't perfect but gives a rough approximation for this example
[x,y]=ll2utm(lat,long);
grad=gradient(x,y)
inv_grad=(-1/grad)
y_dist=sqrt(buffer.^2/((inv_grad.^2)+1));
x_dist=abs(y_dist/inv_grad);
x=x+x_dist
y=y+y_dist

Sign in to comment.

Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!