如何在GrADS

时间:2018-04-18 05:23:41

标签: grads

我在GrADS中找到了关于绘制变量的link,是的,手册编写得很糟糕。我想只绘制等于零的值。

说我从-10到10有异常,我想提取并绘制绝对零的轮廓,我怎么能在GrADS中做到这一点?

reinit
open somefile.ctl
set gxout 
d var #this plots the variable from -10 to 10 

1 个答案:

答案 0 :(得分:0)

如果你想绘制'0'轮廓线,只需使用'set clevs 0' 所以在你的代码中,它应该是:

reinit
open somefile.ctl

set gxout contour
set clevs 0

d var #this plots the variable from -10 to 10 

如果要“提取”轮廓线,最好的方法是将其保存为线形文件。就像这样:

set gxout shp
set shp -ln -fmt 8 4 linem
set shpattr AUTHOR string test
set shpattr TYPE string grid contours
set shpattr DESC string anomaly
d var

有关详细信息,请参阅此链接Link 然后绘制shapefile,只需使用'draw shp(shapefile的名称)'