Info

This question is closed. Reopen it to edit or answer.

Possible to contour at specific z planes to give the x,y coords?

1 view (last 30 days)
Given these vectors:
We are dealing with UTM coords here, and we have: Northings, Eastings, and gridded Elevation-values.
dimensions--
x is 1x30
y is 1x41
z is 41x30
and Given this code:
[X,Y]=meshgrid(x,y);%assume this is what you want
dataTemp=[X(:),Y(:),z(:)];
data = rmmissing(dataTemp)
The Followup question:
Is there a way to have contour outputs at certain z values? E.g., somehow setting z = 0 and finding all x,y coords that intersect that plane? I'm guessing there would have to be interpolation involved?

Answers (1)

KSSV
KSSV on 24 Sep 2020
You can use contour to do this. You need to specify the level as 0 to get your coordinates (x,y) where Z = 0.
C = contour(X,Y,Z,[0 0]) ;
  4 Comments
Wthee
Wthee on 1 Oct 2020
That level of resolution isn't necessary.
I'm really just trying to see if griddata can solve my issue as there are many gaps for z values. I would like to have x and y interpolated for z at possible intervals of .1 or .01. from a bit above the surface to typical fault depth.
I don't know if I have presented to case well enough for you to be able to help.
Thanks for the efforts so far.
Walter Roberson
Walter Roberson on 1 Oct 2020
contour3 and provide the level list. The graphics objects that result will have ZData properties corresponding to the z level; regular contour() sets the ZData to 0. XData and YData coordinates give you the edges.

Products

Community Treasure Hunt

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

Start Hunting!