Skip to content

Latest commit

 

History

History
252 lines (155 loc) · 9.57 KB

plotting.rst

File metadata and controls

252 lines (155 loc) · 9.57 KB

Plotting

Plotting is straightforward:

$ cis plot variable:filenames

This will attempt to locate the variable variable in all of the specified filenames, work out its metadata, such as units, labels, etc. and the appropriate chart type to plot, so that a line graph is used for two dimensional data, a scatter plot is used for three dimensional ungridded data and a heatmap for three dimensional gridded data. Other types of chart can be specified using the --type option. Available types are:

line

a simple line plot, for three dimensional data the third variable is represented by the line colour

scatter

a scatter plot, for three dimensional data the third variable is represented by the maker

heatmap

a heatmap especially suitable for gridded data

contour

a standard contour plot, see contour options <contour-options>

contourf

a filled contour plot, see contour options <contour-options>

histogram3d

histogram2d

comparativescatter

allows two variables to be plotted against each other, specified as cis plot variable1:filename1 variable2:filename2 --type comparativescatter

overlay

a collection of plots overlaid on one another, see overlay plots <overlay-plots>

Note that filenames is a non-optional argument used to specify the files to read the variable from. These can be specified as a comma separated list of the following possibilities:

  1. A single filename - this should be the full path to the file
  2. A single directory - all files in this directory will be read
  3. A wildcarded filename - A filename with any wildcards compatible with the python module glob, so that *, ? and [] can all be used. For example /path/to/my/test*file_[0-9].

Note that when using option 2, the filenames in the directory will be automatically sorted into alphabetical order. When using option 3, the filenames matching the wildcard will also be sorted into alphabetical order. The order of the comma separated list will however remain as the user specified, e.g.:

$ cis plot $var:filename1,filename2,wildc*rd,/my/dir/,filename3

would read filename1, then filename2, then all the files that match wildc*rd (in alphabetical order), then all the files in the directory /my/dir/ (in alphabetical order) and then finally filename3.

Plot Options

There are a number of optional arguments, which should be entered as a comma separated list after the mandatory arguments, for example variable:filename:product=Cis,edgecolor=black. The options are:

color

colour of markers, e.g. for scatter plot points or contour lines, see colours-and-markers

cmap

colour map to use, e.g. for contour lines or heatmap, see colours-and-markers

cmin

the minimum value for the colourmap

cmax

the maximum value for the colourmap

edgecolor

colour of scatter marker edges (can be used to differentiate scatter markers with a colourmap from the background plot)

itemstyle

shape of scatter marker, see colours-and-markers

label

name of datagroup for the legend

product

the data product to use for the plot

Additional datagroup options for contour plots only:

contnlevels

the number of levels for the contour plot

contlevels

a list of levels for the contour plot, e.g. contlevels=[0,1,3,10]

contlabel

options are true or false, if true then contour labels are shown

contwidth

width of the contour lines

contfontsize

size for labels on contour plot

Note that label refers to the label the plot will have on the legend, for example if a multi-series line graph or scatter plot is plotted. To set the labels of the axes, use --xlabel and --ylabel. --cbarlabel can be used to set the label on the colour bar.

The axes can be specified with --xaxis and --yaxis. Gridded data supports any coordinate axes available in the file, while ungridded data supports the following coordinate options (if available in the data):

  • latitude
  • longitude
  • time
  • altitude
  • air_pressure
  • variable - the variable being plotted

If the product is not specified, the program will attempt to figure out which product should be used based on the filename. See data_products to see a list of available products and their file signatures, or run cis plot -h.

Saving to a File

By default a plot will be displayed on screen. To save it to an image file instead, use the --output option. Available output types are png, pdf, ps, eps and svg, which can be selected using the appropriate filename extension, for example --output plot.svg.

Plot Formatting

There are a number of plot formatting options available:

--xlabel

The label for the x axis

--ylabel

The label for the y axis

--cbarlabel

The label for the colorbar

--xtickangle

The angle for the ticks on the x axis

--ytickangle

The angle for the ticks on the y axis

--title

The title of the plot

--itemwidth

The width of an item. Unit are points in the case of a line, and points squared in the case of a scatter point

--fontsize

The size of the font in points

--cmap

The colour map to be used when plotting a 3D plot, see colours-and-markers

--height

The height of the plot, in inches

--width

The width of the plot, in inches

--xbinwidth

The width of the histogram bins on the x axis

--ybinwidth

The width of the histogram bins on the y axis

--cbarorient

The orientation of the colour bar, either horizontal or vertical

--nocolourbar

Hides the colour bar on a 3D plot

--grid

Shows grid lines

--plotwidth

width of the plot in inches

--plotheight

height of the plot in inches

--cbarscale

this can be used to change the size of the colourbar when plotting and defaults to 0.55 for vertical colorbars, 1.0 for horizontal.

--coastlinescolour

The colour of the coastlines on a map, see colours-and-markers

--nasabluemarble

Use the NASA Blue Marble for the background, instead of coastlines, when doing lat-lon plots

Setting Plot Ranges

The arguments --xmin, --xmax, --xstep, --ymin, --ymax, --ystep, --vmin, --vmax, --vstep can be used to specify the range of values to plot, where x and y correspond to the axes and v corresponds to the colours.

When the arguments refer to dates or times, they should be in the format YYYY-MM-DDThh:mm:ss, where the time is optional. A colon or a space is also a valid date and time separator (if using a space quotes are necessary).

The step arguments are used to specify the tick spacing on the axes and vstep is used to specify the tick spacing on the colorbar.

When the step arguments refer to an amount of time, they should be in the ISO 8061 format PnYnMnDTnHnMnS, where any particular time group is optional, case does not matter, and T can be substituted for either a colon or a space (if using a space quotes are necessary).

For example, to specify a tick spacing of one month and six seconds on the x axis, the following argument should be given: --xstep 1m6S

Note: If a value is negative, then an equals sign must be used, e.g. --xmin=-5.

To plot using a log scale:

--logx

The x axis will be plotted using a log scale of base 10

--logy

The y axis will be plotted using a log scale of base 10

--logv

The values (colours) will be plotted using a log scale of base 10

Overlaying Multiple Plots

Overlaying multiple line graphs or scatter plots is straightforward, simply use the plot command as before but specify multiple files and variables, e.g.:

$ cis plot $var1:$filename1:edgecolor=black $var2:$filename2:edgecolor=red

To plot two variables from the same file, simply use the above command with $filename1 in place of $filename2.

However, using --type overlay allows multiple files to be specified on the command line to be plotted each with its own type, which is specified as e.g. type=heatmap, along with the other datagroup options. Currently supported plot types are heatmap, contour, contourf and scatter. An additional datagroup option available is transparency, which allows the transparency for a layer to be set. transparency take a value between 0 and 1, where 0 is completely opaque and 1 fully transparent.

For example, to plot a heatmap and a contour plot the following options can be used:

cis plot var1:file1:type=heatmap var2:file2:type=contour,color=white --type overlay --plotwidth 20 --plotheight 15 --cbarscale 0.5 -o overlay.png

Note that the default plot dimensions are deduced from the first datagroup specified.

Many more examples are available in the overlay examples <overlay_examples> page.

Available Colours and Markers

CIS recognises any valid html colour, specified using its name e.g. red for options such as item colour (line/scatter colour) and the colour of the coast lines.

A list of available colour maps for 3D plots, such as heatmaps, scatter and contour plots, can be found here: colour maps.

For a list of available scatter point styles, see here: scatter point styles.