该函数是Gempy ImpicitCoKriging中的一个方法。它用于为默认的坐标系设置朝向。
set_default_orientation(axis: str)
axis
: str。表示朝向轴的字符串。可以取值为"x"
、"y"
和"z"
。默认值为"x"
。该函数没有返回值。
import gempy as gp
# 创建 ImplicitCoKriging 对象
model = gp.create_model('model')
# 设置默认坐标系朝向为y轴
model.set_default_orientation('y')
在使用该函数时,需要注意如下事项:
axis
参数只能取"x"
、"y"
和"z"
三个值;ImpicitCoKriging 类的官方文档:https://www.gempy.org/documentation/core.html#gempy.core.model.ImplicitCoKriging。