
Example pages containing: tips | resources | functions/procedures
NCL Graphics: Tropical Strip Plots


tmXBMajorLengthF = 0.014
tmXBMinorLengthF = 0.007
tmYLMajorLengthF= 0.014
tmYLMinorLengthF = 0.007
Resizes the tickmarks
tmXBLabelFontHeightF = 0.014
tmYLLabelFontHeightF = 0.014, Resizes the tickmarks labels
tiMainFontHeightF = 0.022, Resizes the title
gsnMajorLatSpacing = 30
gsnMinorLatSpacing = 10, Limit the latitudinal labeling.
txFontHeightF = 0.017
amOrthogonalPosF = 0.15, Increases the text size and
move text up.

The example uses the NCL procedure uv2sfvpg to calculate psi and chi on a gaussian grid. This requires the user to explicitly allocate space for psi and chi via NCL's "new" function.
An alternate way of calculating psi and chi, would be to use
uv2vrG to calculate vorticity
and
uv2dvG to calculate divergence and
then perform an inverse laplacian
ilapsG. This approach does not require the user to explicitly
allocate memory for psi and chi.
psi = ilapsG ( uv2vrG(u,v), 0) chi = ilapsG ( uv2dvG(u,v), 0)

pmLabelBarOrthogonalPosF = .35, Moves the label bar down.

mpShapeMode = "FreeAspect"
vpWidthF = 0.8
vpHeightF = 0.4
Allows the user to change the aspect ratio of a map plot. For plain contour plots, the ShapeMode resource is not required. For maps, unless ShapeMode is included, the plot manager will try to maintain the aspect ratio of the plot regardless of the values you input for Height and Width.