本文整理汇总了Python中ert.ecl.EclRegion.select_inside_polygon方法的典型用法代码示例。如果您正苦于以下问题:Python EclRegion.select_inside_polygon方法的具体用法?Python EclRegion.select_inside_polygon怎么用?Python EclRegion.select_inside_polygon使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ert.ecl.EclRegion
的用法示例。
在下文中一共展示了EclRegion.select_inside_polygon方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_polygon
# 需要导入模块: from ert.ecl import EclRegion [as 别名]
# 或者: from ert.ecl.EclRegion import select_inside_polygon [as 别名]
def test_polygon(self):
reg = EclRegion(self.grid, False)
(x,y,z) = self.grid.get_xyz( ijk=(10,10,0) )
dx = 0.1
dy = 0.1
reg.select_inside_polygon( [(x-dx,y-dy) , (x-dx,y+dy) , (x+dx,y+dy) , (x+dx,y-dy)] )
self.assertTrue( self.grid.nz == len(reg.global_list))
示例2: test_heidrun
# 需要导入模块: from ert.ecl import EclRegion [as 别名]
# 或者: from ert.ecl.EclRegion import select_inside_polygon [as 别名]
def test_heidrun(self):
root = self.createTestPath("Statoil/ECLIPSE/Heidrun")
grid = EclGrid( "%s/FF12_2013B2_AMAP_AOP-J15_NO62_MOVEX.EGRID" % root)
polygon = []
with open("%s/polygon.ply" % root) as fileH:
for line in fileH.readlines():
tmp = line.split()
polygon.append( (float(tmp[0]) , float(tmp[1])))
self.assertEqual( len(polygon) , 11 )
reg = EclRegion( grid , False )
reg.select_inside_polygon( polygon )
self.assertEqual( 0 , len(reg.global_list) % grid.nz)