Grads Variables

Variable names

The complete specification for a variable name is:

A dimension expression is used to locally modify the dimension environment for that variable only. Only fixed dimensions can be thus modified.

An absolute dimension expression is:

X|Y|Z|T|LON|LAT|LEV|TIME = value

A relative dimension expression (relative to the current dimension environment):

X|Y|Z|T|LON|LAT|LEV|TIME +/- offset

Examples of variable specifications are:

An important note: When you enter a dimension in grid units, GrADS always converts it to world coordinates. This conversion is done using the scaling of the default file. However, when a grid coordinate (x,y,z,t) is supplied within a dimension expression as part of a variable specification, the scaling for that file (ie, the file that variable is to be taken from) is used.

GrADS has a few "predefined" variable names. You can think of these as being variables implicitly contained within any opened gridded file. The variable names are:

When used, they will contain the lat, lon, and lev at the respective grid points, using the scaling of the appropriate file. You can specify: lat.2 for example, to get latitudes on the grid of the 2nd opened data set.

Defining new variables

The define command allows you to interactively create a new variable. The syntax is:

The new variable can then be used in subsequent define and/or display commands. The new variable is stored in memory, not on disk, so avoid defining variables over large dimension ranges.

Defined variables cover the dimension ranges in effect at the time the command is issued. You may define a variable that has from 0 to 4 varying dimensions. The define command is the only case within GrADS where four varying dimensions is valid.

When Z and/or T are varying dimensions, the define command evaluates the expression by stepping through Z and T. In other words, the expression is evaluated within a dimension environment that has fixed Z and T. This will affect how you compose the expression.

When you use a defined variable, data is taken from the variable in a way similar to data taken from a GrADS data file. For example, say you define a four dimensional variable:

After issuing the define command, remember to change the dimension environment so less than 4 dimensions are varying!

The display of the defined variable will display a 2-D slice taken at time 5 and level 500.

If you define a variable that has fixed dimensions, and then later access this variable, the fixed dimensions are treated as "wild cards". The best way to show this is with an example:

The defined variable has two varying dimensions. If we now display this variable (or use it in an expression), the fixed dimensions of the defined variable, namely Z and T, will match ANY Z and T dimension setting:

In the above display, the variable zave would be displayed as it was defined, ie you would get a time average of 500mb heights, even though the level is set to 850.

When the defined variable has varying dimensions, and you have a dimension environment where that dimension is fixed, the proper dimension will be retrieved from the variable:

In the above example, the defined variable has a varying Y dimension. We then fix the Y dimension to be 40N, and display a 1-D slice. The data from 40N in the defined grid will be accessed. If you then did:

The data from 40S would be accessed from the defined variable. Since this is beyond the dimensions originally used when the variable was defined, the data would be set to missing.

You can also locally override the dimension environment:

If that dimension is a varying dimension within the defined variable. If the dimension is a fixed dimension for that variable, the local override will be ignored:

In the above command, the defined variable temp has fixed T, so the t=15 would be ignored.

N.B.: The define command currently supports only grids.

Once you have defined a grid variables, you may tell GrADS that the new variable is climatological, ie that you wish to treat the time dimension of the new variable in a wild card sense.

The command is:

where varname is the name of a defined variable. If the grid is described as seasonal, then it is assumed that the defined variable contains monthly (or multi month) means. Daily or multi-day means are not yet supported. If diurnal is specified, it is assumed the defined variable contains means over some time period less than a day.

After describing the defined variable as climatological, then the date/times are treated appropriately when data is accessed from the defined variable.

In the following example, the data set contains 10 years of monthly means:

This define will set up a variable called zave which contains 12 times, each time being the 10 year mean for that month. We are making use here of the fact that the define command loops through a varying time dimension when evaluating the expression, and within the ave function we are making use of the variable time offset of t+0, which uses a start time that is whatever time the define command is using as it loops.

The final display will remove the 10 year monthly mean for December from the last December in the data set.

Undefining variables

Each variable defined using the define command reserves some system resources. If you no longer need a defined variable it is sensible to free these resources for other use. This is accomplished with the undefine command. For example:

would free the resources used by the defined variable p. Of course, the variable p would no longer be available for GrADS processing.