如何在 GrADS 中绘制特定值

How to plot specific value in GrADS

我在 GrADS 的绘图变量上找到了这个 link 是的,手册写得不好。我只想绘制等于零的值。

假设我有从 -10 到 10 的异常,我只想提取和绘制绝对零的轮廓,我如何在 GrADS 中执行此操作?

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

如果要绘制“0”等高线,只需使用 'set clevs 0' 所以在你的代码中,它应该是:

reinit
open somefile.ctl

set gxout contour
set clevs 0

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

如果你想"extract"轮廓线,最好的方法是将它保存为一条线shapefile.Like this:

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 了解更多详情 Link 然后绘制 shapefile,只需使用 'draw shp (name of shapefile)'