sconstruct
来自「国外免费地震资料处理软件包」· 代码 · 共 39 行
TXT
39 行
from rsfproj import *for comp in ('vx','vz','eta'): src = 'marm%s.HH' % comp Fetch(src,'marm') Flow(comp,src,'dd form=native')grey = '''grey allpos=y scalebar=yscreenratio=0.325644 screenht=8 pclip=100label1=Depth unit1=m label2=Lateral unit2=m'''Plot('vz','scale dscale=0.001 | %s bias=1.3 title="Vertical velocity" barlabel="km/s" ' % grey)Plot('eta',grey + ' title="\F10 h\F3 "')Result('marmmod','vz eta','OverUnderIso')Flow('iso','vz','window | eikonalvti order=1 yshot=3000')Flow('ane','vz vx eta', ''' window | eikonalvti order=1 yshot=3000 vx=${SOURCES[1]} eta=${SOURCES[2]} ''')def contour(title): return ''' contour title="%s" screenratio=0.325644 screenht=8 nc=30 c0=0 dc=0.1 label1=Depth unit1=m label2=Lateral unit2=m ''' % titlePlot('iso',contour('Isotropic'))Plot('ane',contour('VTI Anelliptic'))Result('marm','iso ane','OverUnderIso')End()
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?