NCL Home > Documentation > Graphics > Graphical Interfaces

gsn_streamline

Creates and draws a streamline plot.

Prototype

load "$NCARG_ROOT/lib/ncarg/nclscripts/csm/gsn_code.ncl"

	function gsn_streamline (
		wks  [1] : graphic,  
		u [*][*] : numeric,  
		v [*][*] : numeric,  
		res  [1] : logical   
	)

	return_val [1] :  graphic

Arguments

wks

A Workstation identifier. The identifier is one returned either from calling gsn_open_wks or calling create to create a Workstation object.

u
v

The u and v data for the streamline plot; must be two-dimensional.

res

A variable containing an optional list of plot resources, attached as attributes. Set to True if you want the attached attributes to be applied, and False if you either don't have any resources to set, or you don't want the resources applied.

Return value

A scalar id of the streamline plot created is returned. The id of the data object is also returned as an attribute called data. This is useful if you want to use setvalues to change some data options after this function has been called.

Description

This function creates and draws a streamline plot on the given workstation.

If either u or v have a _FillValue attribute, these values will be used as missing values.

You should use gsn_csm_streamline if you want a more customized streamline plot and/or if your data has coordinate arrays.

To maximize the area that the plot is drawn in, set the special resource gsnMaximize to True.

See Also

gsn_streamline_map
Special gsn resources

Examples

For some application examples, see the streamline suite of examples.