get_orientation
是 Gempy 中 Orientations
类的一个成员函数,用于获取指定方向的取向信息。
参数名 | 类型 | 描述 |
---|---|---|
orientation |
str |
取向方向。取值可以是 "X", "Y", "Z"。 |
返回一个 numpy.ndarray
,记录了指定方向上所有位置的取向信息。
import gempy as gp
geo_data = gp.create_data(...)
orientations = geo_data.orientations.get_orientation(orientation="X")
如果指定的取向方向不在 "X", "Y", "Z" 中,会抛出 ValueError
异常。