spacepy.plot.utils.applySmartTimeTicks

spacepy.plot.utils.applySmartTimeTicks(ax, time, dolimit=True, dolabel=False)[source]

Given an axis ax and a list/array of datetime objects, time, use the smartTimeTicks function to build smart time ticks and then immediately apply them to the given axis. The first and last elements of the time list will be used as bounds for the x-axis range.

The range of the time input value will be used to set the limits of the x-axis as well. Set kwarg ‘dolimit’ to False to override this behavior.

Parameters:
axmatplotlib.pyplot.Axes

A matplotlib Axis object.

timelist

list of datetime objects

dolimitboolean (optional)

The range of the time input value will be used to set the limits of the x-axis as well. Setting this overrides this behavior.

dolabelboolean (optional)

Sets autolabeling of the time axis with “Time from” time[0]

See also

smartTimeTicks