?? sconstruct
字號:
from rsfproj import *# Fetch Files from repositoryFetch("int_depth_vp.sgy","pluto")Fetch("P15VPint_25f_padded.SEGY","pluto")# Convert Files to RSFFlow('velocityProfileStd','int_depth_vp.sgy', '''segyread tape=$SOURCE | put d2=.025 label1=Depth o2=-34.875 label2=Position unit1=ft*1000 unit2=ft*1000''',stdin=0)Flow('velocityProfileMetric','int_depth_vp.sgy', '''segyread tape=$SOURCE | put d1=.00760 d2=.00760 o2=-10.629 label1=Depth label2=Position unit1=km unit2=km | scale rscale=.0003048''') Flow('velocityProfilePadded','P15VPint_25f_padded.SEGY', '''segyread tape=$SOURCE | put d1=.0076 d2=.00760 o2=-10.629 label1=Depth label2=Position unit1=km unit2=km | scale rscale=.0003048''')# Plotting Sectionmins=[0,0,-10.5]maxs=['105','32','42.5']counter=0for item in ['Std','Metric']: Result('velocityProfile' + item,'''window $SOURCE | grey scalebar=y color=I allpos=y gainpanel=a title=P-Wave\ Velocity\ Profile max2=%s min2=0 screenratio=.28125 screenht=2 barlabel=\(km/s\) labelsz=4 title= ''' % maxs[counter]) counter=counter+1Result('velocityProfilePadded','''window $SOURCE | grey scalebar=y color=I allpos=y gainpanel=a title=P-Wave\ Velocity\ Profile screenratio=.28 125 screenht=2 labelsz=4 title= barlabel=\(km/s\) ''')End()
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -