- 积分
- 865
- 贡献
-
- 精华
- 在线时间
- 小时
- 注册时间
- 2014-4-6
- 最后登录
- 1970-1-1
|
登录后查看更多精彩内容~
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
PRO ReadNetCDFData, filename
filename='d:\idlt\tt.nc'
Id = NCDF_OPEN(filename)
; Read the data
NCDF_VARGET, Id, 'lftx', Data
device,decomposed=0
tek_color
Print,'Displaying Data'
erase
loadct,0
map_set,/mercator
map_grid
map_continents
map_continents,/countries,color=red
contour,data(*,*,1)
NCDF_CLOSE, Id
END
本人是个idl新人,高手帮看看我这个程序为什么画出来的数据没有叠加上地图??
把contour,data(*,*,1)这句去掉,可以画出地图
把map_set,/mercator去掉可以画出数据
|
|