Replies: 1 comment 2 replies
-
Hello @wdk11, thanks for the question. I do not know how deep you went into GemPy already but of course we are not drawing images. GemPy is based on an implicit interpolator (Universal Co-Kriging) the returns a scalar value corresponding to structural elements (e.g. rock units) everywhere in sapce. Tp create a model this space is dicretized. By default GemPy uses a regular grid for this discretization. The resolution of this grid is set when we create a model. GemPy also allows to define other grids and multiple grids for a single model. The most common examples include custom cross sections and topography data. How to create these types of custom grids is covered in the first part of our new video tutorial series that I would highly recommend if you did not already watch it. Apart from these specific grids you can also define custom grids by basically passing any XYZ coordinates to Gempy and calcualte the models solution at these coordinates. Here is a tutorial on how to this. A shortcut version of this is to use:
where points is a numpy array of shape I hope this answers your question. Feel free to ask any fllow-ups. As a small note I would like to add that GemPy is an Open Source project and we answer issues and help out of personal motivation. We do appreciate people starting these questiosn with a "Hello" or anything similar. Cheers, |
Beta Was this translation helpful? Give feedback.
-
I think the existing tutorials are all about drawing three-dimensional or two-dimensional images. I want to know how to obtain point data after building a geological model. For example, if I input a point, I can obtain the geological information of that point. For example, if I define a cross-section, I can input a point in the cross-section to obtain the geological information of any point in the cross-section.
Overall, I would like to know an example of an interface for obtaining geological information based on points.
Beta Was this translation helpful? Give feedback.
All reactions