爱气象,爱气象家园! 

气象家园

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博登陆

只需一步, 快速开始

搜索
查看: 3803|回复: 3

如何对格点场进行升/降尺度?

[复制链接]

新浪微博达人勋

发表于 2018-1-23 16:54:48 | 显示全部楼层 |阅读模式

登录后查看更多精彩内容~

您需要 登录 才可以下载或查看,没有帐号?立即注册 新浪微博登陆

x
有没有函数直接对获得的格点场进行升降尺度,比如把0.25*0.25的格点场变成0.125*0.125?
密码修改失败请联系微信:mofangbao

新浪微博达人勋

发表于 2018-1-23 23:43:09 | 显示全部楼层
可以用 interp2d 函数来实现(缺省是双线性插值),脚本示例程序:

  1. f = addfile('D:/Temp/GrADS/model.ctl')
  2. vname = 'PS'
  3. psv = f[vname]
  4. ps = psv[0,'10:60','60:140']

  5. #Plot
  6. subplot(1,2,1)
  7. axesm(newaxes=False)
  8. geoshow('country', edgecolor=(0,0,255))
  9. layer = imshowm(ps, 20)
  10. #scatterm(ps)
  11. title('Pressure - low resolution')
  12. colorbar(layer, orientation='horizontal', extendrect=False, shrink=0.8, aspect=12)

  13. subplot(1,2,2)
  14. axesm(newaxes=False)
  15. geoshow('country', edgecolor=(0,0,255))
  16. x = linspace(60., 140., 34)
  17. y = linspace(10., 62., 28)
  18. xx, yy = meshgrid(x, y)
  19. ps1 = interp2d(ps, xx, yy)
  20. layer = imshowm(x, y, ps1, 20)
  21. #scatterm(x, y, ps1)
  22. title('Pressure - high resolution')
  23. colorbar(layer, orientation='horizontal', extendrect=False, shrink=0.8, aspect=12)


regrid_1.png
密码修改失败请联系微信:mofangbao

新浪微博达人勋

发表于 2018-1-24 08:25:38 | 显示全部楼层
ncl 里的esmf功能也可以实现。
密码修改失败请联系微信:mofangbao

新浪微博达人勋

 楼主| 发表于 2018-1-24 16:01:33 | 显示全部楼层
MeteoInfo 发表于 2018-1-23 23:43
可以用 interp2d 函数来实现(缺省是双线性插值),脚本示例程序:

谢谢王老师!
密码修改失败请联系微信:mofangbao
您需要登录后才可以回帖 登录 | 立即注册 新浪微博登陆

本版积分规则

Copyright ©2011-2014 bbs.06climate.com All Rights Reserved.  Powered by Discuz! (京ICP-10201084)

本站信息均由会员发表,不代表气象家园立场,禁止在本站发表与国家法律相抵触言论

快速回复 返回顶部 返回列表