del_orientation
函数用于从采样点方向数据集中删除指定的取向。
del_orientation(self, indexes:List[int])->None
indexes
:要删除的采样点方向数据的索引序列,类型为列表。该函数没有返回值。
import gempy as gp
# 创建geological model并指定采样点方向数据文件
geo_model = gp.create_model('My very first geological model')
gp.init_data(geo_model, [0, 1000., 0, 1000., 0, 1000.], [50, 50, 50],
path_o = 'data_input/simple_fault_model_orientations.csv')
# 删除指定的采样点方向数据
geo_model.orientations.del_orientation([0,2])
indexes
参数应该是索引序列,即采样点方向数据在数据集中的位置从0开始计数的整数,而不是数据集中的ID。indexes
中包含了数据集中不存在的索引,将抛出索引错误(IndexError)异常。indexes
参数不是列表类型,将抛出类型错误(TypeError)异常。