Azzera filtri
Azzera filtri

Create a line with variable buffer zone

5 visualizzazioni (ultimi 30 giorni)
Jack Naumann
Jack Naumann il 13 Dic 2017
Commentato: Jack Naumann il 13 Dic 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 Commenti
Jan
Jan il 13 Dic 2017
Modificato: Jan il 13 Dic 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 il 13 Dic 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

Accedi per commentare.

Risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by