- 积分
- 425
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2012-5-4
- 最后登录
- 1970-1-1
![[] 粉丝数: 微博数: 新浪微博达人勋](source/plugin/sina_login/img/light.png)
|

楼主 |
发表于 2012-11-27 17:39:00
|
显示全部楼层
river 发表于 2012-11-25 22:05
楼主分享下方法吧,让大家学习一下
'open f:\qcat\spd2009.ctl'
'set lon 120 140'
'set lat 20 40'
'set t 60'
*'define windspd=sqrt(u*u+v*v)'
'd windspd'
say 'click a'
'q bpos'
x0=subwrd(result,3)
y0=subwrd(result,4)
say 'click b'
'q bpos'
x1=subwrd(result,3)
y1=subwrd(result,4)
'draw line 'x0' 'y0' 'x1' 'y1''
'q xy2w 'x0' 'y0''
lon0=subwrd(result,3)
lat0=subwrd(result,6)
'q xy2w 'x1' 'y1''
lon1=subwrd(result,3)
lat1=subwrd(result,6)
lx=(lon1-lon0)*112
ly=(lat1-lat0)*223
'd sqrt('lx'*'lx'+'ly'*'ly')'
l=subwrd(result,4)
*decimal=l/55.8
decimal=l/50
decimal_part=substr(decimal,3,20)
n=decimal-decimal_part
inclat=(lat1-lat0)/n
inclon=(lon1-lon0)/n
i=1
while(i<=n)
lon.i=lon0+(i-1)*inclon
lat.i=lat0+(i-1)*inclat
i=i+1
endwhile
'set fwrite f:\line\hov.dat'
nt=1
while(nt<=91)
i=1
'set t 'nt''
while(i<=n)
'set lon 'lon.i''
'set lat 'lat.i''
'set gxout fwrite'
'd windspd'
*dummy=subwrd(result,4)
*data=subwrd(dummy,4)
*rc=write('d:\gad.dat',dummy,append)
i=i+1
endwhile
nt=nt+1
endwhile
'disable fwrite'
fname = 'f:\line\hovtmp.ctl'
rc = write(fname,'dset d:\line\hov.dat')
rc = write(fname,'undef -999.000')
rc = write(fname,'title Time Mask')
rc = write(fname,'xdef 'n' linear 'lon1' 'lon.1' 'lon.2' 0.25')
rc = write(fname,'ydef 1 linear 'lat0' 'lat.1' 'lat.2' 0.25')
rc = write(fname,'zdef 1 linear 0 1')
rc = write(fname,'tdef 18 linear 00Z003NOV2007 7dy')
rc = write(fname,'vars 1')
rc = write(fname,'tmask 0 99 Time Mask')
rc = write(fname,'endvars')
rc = close(fname)
*close('d:\gad.dat')
*return
; |
|