- 积分
- 33
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2015-12-8
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
a1 = a->QVAPOR(0,0,:,:)
b1 = b->QVAPOR(0,0,:,:)
c = b1-a1
; note, in LSM files, it is safer to copy the missing value from the
; file than try to write it out, since the number of decimal points on the
; file may not be the same number NCL reads. (9.99999e29)
; c@_FillValue = a->TAM@missing_value
;c@long_name=c@Title ; no long_name on this file
c!0="lat" ; coordinate vars are called
c!1="lon" ; "latitude" etc. plots want "lat"
c&lat =a->XLAT ; Create coordinate variables
c&lon =a->XLONG ; for sst and store the sizes
c@lon2d = xlong2D
c@lat2d = xlat2D
|
|