stream

cfplot.stream(u=None, v=None, x=None, y=None, density=None, linewidth=None, color=None, arrowsize=None, arrowstyle=None, minlength=None, maxlength=None, axes=True, xaxis=True, yaxis=True, xticks=None, xticklabels=None, yticks=None, yticklabels=None, xlabel=None, ylabel=None, title=None, zorder=None)[source]
stream - plot a streamplot which is used to show fluid flow and 2D field gradients

u=None - u wind
v=None - v wind
x=None - x locations of u and v
y=None - y locations of u and v
density=None - controls the closeness of streamlines. When density = 1,
the domain is divided into a 30x30 grid
linewidth=None - the width of the stream lines. With a 2D array the line width
can be varied across the grid. The array must have the same shape
as u and v
color=None - the streamline color
arrowsize=None - scaling factor for the arrow size
arrowstyle=None - arrow style specification
minlength=None - minimum length of streamline in axes coordinates
maxlength=None - maximum length of streamline in axes coordinates
axes=True - plot x and y axes
xaxis=True - plot xaxis
yaxis=True - plot y axis
xticks=None - xtick positions
xticklabels=None - xtick labels
yticks=None - y tick positions
yticklabels=None - ytick labels
xlabel=None - label for x axis
ylabel=None - label for y axis
title=None - title for plot
zorder=None - plotting order

Returns:

None