forked from pygeode/pygeode.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeaxes.html
409 lines (380 loc) · 23.1 KB
/
timeaxes.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Time axes objects reference — PyGeode 1.0 alpha documentation</title>
<link rel="stylesheet" href="_static/pygtheme.css" type="text/css" />
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
VERSION: '1.0 alpha',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
};
</script>
<script type="text/javascript" src="_static/jquery.js"></script>
<script type="text/javascript" src="_static/underscore.js"></script>
<script type="text/javascript" src="_static/doctools.js"></script>
<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
<link rel="top" title="PyGeode 1.0 alpha documentation" href="index.html" />
<link rel="up" title="Axis class overview" href="axes.html" />
<link rel="next" title="Dataset overview" href="dataset.html" />
<link rel="prev" title="Vertical axes object reference" href="verticalaxes.html" />
<link href="http://fonts.googleapis.com/css?family=Ubuntu:300,300italic,regular,italic,500,500italic,bold,bolditalic" rel="stylesheet" type="text/css">
<link href='http://fonts.googleapis.com/css?family=Ubuntu+Mono:400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
accesskey="I">index</a></li>
<li class="right" >
<a href="dataset.html" title="Dataset overview"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="verticalaxes.html" title="Vertical axes object reference"
accesskey="P">previous</a> |</li>
<li><a href="index.html">PyGeode 1.0 alpha documentation</a> »</li>
<li><a href="reference.html" >Reference</a> »</li>
<li><a href="axes.html" accesskey="U">Axis class overview</a> »</li>
</ul>
</div>
<div class="document">
<div class="documentwrapper">
<div class="bodywrapper">
<div class="body">
<div class="section" id="time-axes-objects-reference">
<h1>Time axes objects reference<a class="headerlink" href="#time-axes-objects-reference" title="Permalink to this headline">¶</a></h1>
<dl class="class">
<dt id="pygeode.TAxis">
<em class="property">class </em><tt class="descclassname">pygeode.</tt><tt class="descname">TAxis</tt><a class="headerlink" href="#pygeode.TAxis" title="Permalink to this definition">¶</a></dt>
<dd><p>Inherits from <a class="reference internal" href="axes.html#pygeode.Axis" title="pygeode.Axis"><tt class="xref py py-class docutils literal"><span class="pre">Axis</span></tt></a></p>
<p>Generic parent class for axes representing time coordinates, plotted by default on
the horizontal axis in line plots and in contour plots. No new or overridden methods.</p>
</dd></dl>
<dl class="class">
<dt id="pygeode.timeaxis.Time">
<em class="property">class </em><tt class="descclassname">pygeode.timeaxis.</tt><tt class="descname">Time</tt><a class="headerlink" href="#pygeode.timeaxis.Time" title="Permalink to this definition">¶</a></dt>
<dd><p>Inherits from <tt class="xref py py-class docutils literal"><span class="pre">TAxis</span></tt></p>
<p>Parent class for axes representing times.</p>
<p class="rubric">New and overridden methods</p>
<table border="1" class="longtable docutils">
<colgroup>
<col width="10%" />
<col width="90%" />
</colgroup>
<tbody valign="top">
<tr class="row-odd"><td><a class="reference internal" href="#pygeode.timeaxis.Time.__init__" title="pygeode.timeaxis.Time.__init__"><tt class="xref py py-obj docutils literal"><span class="pre">Time.__init__</span></tt></a>([values, startdate, units])</td>
<td></td>
</tr>
<tr class="row-even"><td><a class="reference internal" href="#pygeode.timeaxis.Time.formatter" title="pygeode.timeaxis.Time.formatter"><tt class="xref py py-obj docutils literal"><span class="pre">Time.formatter</span></tt></a>()</td>
<td>Returns a matplotlib axis Formatter object; by default a FuncFormatter which calls formatvalue().</td>
</tr>
<tr class="row-odd"><td><a class="reference internal" href="#pygeode.timeaxis.Time.locator" title="pygeode.timeaxis.Time.locator"><tt class="xref py py-obj docutils literal"><span class="pre">Time.locator</span></tt></a>()</td>
<td>locator() - Returns an AutoCalendarLocator object</td>
</tr>
<tr class="row-even"><td><a class="reference internal" href="#pygeode.timeaxis.Time.map_to" title="pygeode.timeaxis.Time.map_to"><tt class="xref py py-obj docutils literal"><span class="pre">Time.map_to</span></tt></a>(other)</td>
<td>Define a mapping between this time axis and another one, if one exists.</td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="class">
<dt id="pygeode.timeaxis.CalendarTime">
<em class="property">class </em><tt class="descclassname">pygeode.timeaxis.</tt><tt class="descname">CalendarTime</tt><a class="headerlink" href="#pygeode.timeaxis.CalendarTime" title="Permalink to this definition">¶</a></dt>
<dd><p>Inherits from <a class="reference internal" href="#pygeode.timeaxis.Time" title="pygeode.timeaxis.Time"><tt class="xref py py-class docutils literal"><span class="pre">Time</span></tt></a></p>
<p>Parent class for time axes with an associated calendar.</p>
<p class="rubric">New and overridden methods</p>
<table border="1" class="longtable docutils">
<colgroup>
<col width="10%" />
<col width="90%" />
</colgroup>
<tbody valign="top">
<tr class="row-odd"><td><a class="reference internal" href="#pygeode.timeaxis.CalendarTime.__init__" title="pygeode.timeaxis.CalendarTime.__init__"><tt class="xref py py-obj docutils literal"><span class="pre">CalendarTime.__init__</span></tt></a>([values, datefmt, ...])</td>
<td></td>
</tr>
<tr class="row-even"><td><a class="reference internal" href="#pygeode.timeaxis.CalendarTime.days_in_month" title="pygeode.timeaxis.CalendarTime.days_in_month"><tt class="xref py py-obj docutils literal"><span class="pre">CalendarTime.days_in_month</span></tt></a>(yr, mn)</td>
<td></td>
</tr>
<tr class="row-odd"><td><a class="reference internal" href="#pygeode.timeaxis.CalendarTime.formatvalue" title="pygeode.timeaxis.CalendarTime.formatvalue"><tt class="xref py py-obj docutils literal"><span class="pre">CalendarTime.formatvalue</span></tt></a>(value[, fmt, ...])</td>
<td>Returns formatted string representation of <tt class="docutils literal"><span class="pre">value</span></tt>, using a strftime-like specification.</td>
</tr>
<tr class="row-even"><td><a class="reference internal" href="#pygeode.timeaxis.CalendarTime.str_as_val" title="pygeode.timeaxis.CalendarTime.str_as_val"><tt class="xref py py-obj docutils literal"><span class="pre">CalendarTime.str_as_val</span></tt></a>(key, s)</td>
<td>Converts a string representation of a date to a value according to the calendar defined by this time axis.</td>
</tr>
<tr class="row-odd"><td><a class="reference internal" href="#pygeode.timeaxis.CalendarTime.val_as_date" title="pygeode.timeaxis.CalendarTime.val_as_date"><tt class="xref py py-obj docutils literal"><span class="pre">CalendarTime.val_as_date</span></tt></a>([vals, startdate, ...])</td>
<td></td>
</tr>
<tr class="row-even"><td><a class="reference internal" href="#pygeode.timeaxis.CalendarTime.date_as_val" title="pygeode.timeaxis.CalendarTime.date_as_val"><tt class="xref py py-obj docutils literal"><span class="pre">CalendarTime.date_as_val</span></tt></a>([dates, startdate, ...])</td>
<td></td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="class">
<dt id="pygeode.StandardTime">
<em class="property">class </em><tt class="descclassname">pygeode.</tt><tt class="descname">StandardTime</tt><a class="headerlink" href="#pygeode.StandardTime" title="Permalink to this definition">¶</a></dt>
<dd><p>Inherits from <a class="reference internal" href="#pygeode.timeaxis.CalendarTime" title="pygeode.timeaxis.CalendarTime"><tt class="xref py py-class docutils literal"><span class="pre">CalendarTime</span></tt></a></p>
<p>Time axis representing the standard calendar.</p>
</dd></dl>
<dl class="class">
<dt id="pygeode.ModelTime365">
<em class="property">class </em><tt class="descclassname">pygeode.</tt><tt class="descname">ModelTime365</tt><a class="headerlink" href="#pygeode.ModelTime365" title="Permalink to this definition">¶</a></dt>
<dd><p>Inherits from <a class="reference internal" href="#pygeode.timeaxis.CalendarTime" title="pygeode.timeaxis.CalendarTime"><tt class="xref py py-class docutils literal"><span class="pre">CalendarTime</span></tt></a></p>
<p>Time axis representing a calendar with a 365 day year.</p>
</dd></dl>
<dl class="class">
<dt id="pygeode.ModelTime360">
<em class="property">class </em><tt class="descclassname">pygeode.</tt><tt class="descname">ModelTime360</tt><a class="headerlink" href="#pygeode.ModelTime360" title="Permalink to this definition">¶</a></dt>
<dd><p>Inherits from <a class="reference internal" href="#pygeode.timeaxis.CalendarTime" title="pygeode.timeaxis.CalendarTime"><tt class="xref py py-class docutils literal"><span class="pre">CalendarTime</span></tt></a></p>
<p>Time axis representing a calendar with a 360 day year.</p>
</dd></dl>
<dl class="class">
<dt id="pygeode.Yearless">
<em class="property">class </em><tt class="descclassname">pygeode.</tt><tt class="descname">Yearless</tt><a class="headerlink" href="#pygeode.Yearless" title="Permalink to this definition">¶</a></dt>
<dd><p>Inherits from <a class="reference internal" href="#pygeode.timeaxis.CalendarTime" title="pygeode.timeaxis.CalendarTime"><tt class="xref py py-class docutils literal"><span class="pre">CalendarTime</span></tt></a></p>
<p>Time axis representing a calendar that marks days independent of years and months.</p>
<p class="rubric">New and overridden methods</p>
<table border="1" class="longtable docutils">
<colgroup>
<col width="10%" />
<col width="90%" />
</colgroup>
<tbody valign="top">
<tr class="row-odd"><td><a class="reference internal" href="#pygeode.Yearless.__init__" title="pygeode.Yearless.__init__"><tt class="xref py py-obj docutils literal"><span class="pre">Yearless.__init__</span></tt></a>(*args, **kwargs)</td>
<td></td>
</tr>
<tr class="row-even"><td><a class="reference internal" href="#pygeode.Yearless.days_in_month" title="pygeode.Yearless.days_in_month"><tt class="xref py py-obj docutils literal"><span class="pre">Yearless.days_in_month</span></tt></a>(yr, mn)</td>
<td></td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="method">
<dt id="pygeode.timeaxis.Time.__init__">
<tt class="descclassname">Time.</tt><tt class="descname">__init__</tt><big>(</big><em>values=None</em>, <em>startdate=None</em>, <em>units=None</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pygeode.timeaxis.Time.__init__" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="pygeode.timeaxis.Time.formatter">
<tt class="descclassname">Time.</tt><tt class="descname">formatter</tt><big>(</big><big>)</big><a class="headerlink" href="#pygeode.timeaxis.Time.formatter" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns a matplotlib axis Formatter object; by default a FuncFormatter which calls formatvalue().</p>
</dd></dl>
<dl class="method">
<dt id="pygeode.timeaxis.Time.locator">
<tt class="descclassname">Time.</tt><tt class="descname">locator</tt><big>(</big><big>)</big><a class="headerlink" href="#pygeode.timeaxis.Time.locator" title="Permalink to this definition">¶</a></dt>
<dd><p>locator() - Returns an AutoCalendarLocator object</p>
</dd></dl>
<dl class="method">
<dt id="pygeode.timeaxis.Time.map_to">
<tt class="descclassname">Time.</tt><tt class="descname">map_to</tt><big>(</big><em>other</em><big>)</big><a class="headerlink" href="#pygeode.timeaxis.Time.map_to" title="Permalink to this definition">¶</a></dt>
<dd><p>Define a mapping between this time axis and another one, if one exists.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><p class="first"><strong>other</strong> : <tt class="xref py py-class docutils literal"><span class="pre">Axis</span></tt> instance</p>
<blockquote>
<div><p>Axis instance to find map to.</p>
</div></blockquote>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first"><strong>indices</strong> : An array of integer indices or None</p>
<blockquote class="last">
<div><p>If a mapping exists, an array of integer indices which define mapping
from this axis to other (i.e. self[indices] will return the elements in
the appropriate ordering for the mapped axis). Otherwise None.</p>
</div></blockquote>
</td>
</tr>
</tbody>
</table>
<p class="rubric">Notes</p>
<p>A mapping from this time axis to other can exist only if they are of the
same class (e.g. <tt class="xref py py-class docutils literal"><span class="pre">StandardTime</span></tt>), and if the list of auxarrays defined
in this class is a subset of those defined in the other (e.g. a climatology which
defines only ‘month’, and ‘day’ can be mapped to a time axis with ‘year’, ‘month’
‘day’ and ‘hour’, but not one with only ‘year’ and ‘month’.</p>
<p>Matches are sought between the auxiliary arrays shared by the two axes</p>
</dd></dl>
<dl class="method">
<dt id="pygeode.timeaxis.CalendarTime.__init__">
<tt class="descclassname">CalendarTime.</tt><tt class="descname">__init__</tt><big>(</big><em>values=None</em>, <em>datefmt=None</em>, <em>units=None</em>, <em>startdate=None</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pygeode.timeaxis.CalendarTime.__init__" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="pygeode.timeaxis.CalendarTime.days_in_month">
<tt class="descclassname">CalendarTime.</tt><tt class="descname">days_in_month</tt><big>(</big><em>yr</em>, <em>mn</em><big>)</big><a class="headerlink" href="#pygeode.timeaxis.CalendarTime.days_in_month" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="pygeode.timeaxis.CalendarTime.formatvalue">
<tt class="descclassname">CalendarTime.</tt><tt class="descname">formatvalue</tt><big>(</big><em>value</em>, <em>fmt=None</em>, <em>units=True</em>, <em>unitstr=None</em><big>)</big><a class="headerlink" href="#pygeode.timeaxis.CalendarTime.formatvalue" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns formatted string representation of <tt class="docutils literal"><span class="pre">value</span></tt>, using a strftime-like
specification.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><p class="first"><strong>value</strong> : float or int</p>
<blockquote>
<div><p>Value to format, in calendar defined by this time axis.</p>
</div></blockquote>
<p><strong>fmt</strong> : string (optional)</p>
<blockquote>
<div><p>Format specification. If the default <tt class="docutils literal"><span class="pre">None</span></tt> is specified,
<tt class="docutils literal"><span class="pre">self.formatstr</span></tt> is used.</p>
</div></blockquote>
<p><strong>units</strong> : boolean (optional)</p>
<blockquote>
<div><p>Not used;, included for consistency with <tt class="xref py py-func docutils literal"><span class="pre">Var.formatvalue()</span></tt></p>
</div></blockquote>
<p><strong>unitstr</strong> : string (optional)</p>
<blockquote class="last">
<div><p>Not used;, included for consistency with <tt class="xref py py-func docutils literal"><span class="pre">Var.formatvalue()</span></tt></p>
</div></blockquote>
</td>
</tr>
</tbody>
</table>
<p class="rubric">Notes</p>
<p>The following codes ($$ will yield the character $):</p>
<ul class="simple">
<li>$b - short month name</li>
<li>$B - full month name</li>
<li>$d - day of the month</li>
<li>$D - 2-digit day of the month, zero-padded</li>
<li>$H - hour (24 hr clock)</li>
<li>$I - hour (12 hr clock)</li>
<li>$j - day of the year</li>
<li>$m - month number (Jan=1, ..., Dec=12)</li>
<li>$M - minute</li>
<li>$p - am/pm</li>
<li>$P - AM/PM</li>
<li>$S - second</li>
<li>$y - 2 digit year</li>
<li>$a - 4 digit year</li>
<li>$Y - full year; if less than 100, preceeded by ‘y’</li>
<li>$v - value formatted with %d</li>
<li>$V - value formatted with str()</li>
</ul>
<p class="rubric">Examples</p>
<div class="highlight-python"><div class="highlight"><pre><span class="gp">>>> </span><span class="kn">from</span> <span class="nn">pygeode.tutorial</span> <span class="kn">import</span> <span class="n">t2</span>
<span class="gp">>>> </span><span class="k">print</span> <span class="n">t2</span><span class="o">.</span><span class="n">time</span><span class="o">.</span><span class="n">formatvalue</span><span class="p">(</span><span class="mf">17.25</span><span class="p">)</span>
<span class="go"> Jan 18, 2011 06:00:00</span>
<span class="gp">>>> </span><span class="k">print</span> <span class="n">t2</span><span class="o">.</span><span class="n">time</span><span class="o">.</span><span class="n">formatvalue</span><span class="p">(</span><span class="mi">0</span><span class="p">,</span> <span class="s">'$B $d'</span><span class="p">)</span>
<span class="go"> January 1</span>
<span class="gp">>>> </span><span class="k">print</span> <span class="n">t2</span><span class="o">.</span><span class="n">time</span><span class="o">.</span><span class="n">formatvalue</span><span class="p">(</span><span class="mi">512</span><span class="p">,</span> <span class="s">'$d/$m/$y'</span><span class="p">)</span>
<span class="go"> 28/5/12</span>
</pre></div>
</div>
</dd></dl>
<dl class="method">
<dt id="pygeode.timeaxis.CalendarTime.str_as_val">
<tt class="descclassname">CalendarTime.</tt><tt class="descname">str_as_val</tt><big>(</big><em>key</em>, <em>s</em><big>)</big><a class="headerlink" href="#pygeode.timeaxis.CalendarTime.str_as_val" title="Permalink to this definition">¶</a></dt>
<dd><p>Converts a string representation of a date to a value according to the
calendar defined by this time axis.</p>
<table class="docutils field-list" frame="void" rules="none">
<col class="field-name" />
<col class="field-body" />
<tbody valign="top">
<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><p class="first"><strong>key</strong> : string</p>
<blockquote>
<div><p>key used in selece()</p>
</div></blockquote>
<p><strong>s</strong> : string</p>
<blockquote>
<div><p>string to convert</p>
</div></blockquote>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first"><strong>val</strong> : value</p>
<blockquote class="last">
<div><p>value corresponding to specified date.</p>
</div></blockquote>
</td>
</tr>
</tbody>
</table>
<p class="rubric">Notes</p>
<p>The string is parsed using the regular expression pattern defined in <tt class="docutils literal"><span class="pre">parse_pattern</span></tt>.
By default this assumes a string in the form ‘12 Dec 2008’ or ‘06:00:00 1 Jan 1979’.
A ValueError is thrown if the regular expression does not match the string.</p>
</dd></dl>
<dl class="method">
<dt id="pygeode.timeaxis.CalendarTime.val_as_date">
<tt class="descclassname">CalendarTime.</tt><tt class="descname">val_as_date</tt><big>(</big><em>vals=None</em>, <em>startdate=None</em>, <em>units=None</em>, <em>allfields=False</em><big>)</big><a class="headerlink" href="#pygeode.timeaxis.CalendarTime.val_as_date" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="pygeode.timeaxis.CalendarTime.date_as_val">
<tt class="descclassname">CalendarTime.</tt><tt class="descname">date_as_val</tt><big>(</big><em>dates=None</em>, <em>startdate=None</em>, <em>units=None</em><big>)</big><a class="headerlink" href="#pygeode.timeaxis.CalendarTime.date_as_val" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="pygeode.Yearless.__init__">
<tt class="descclassname">Yearless.</tt><tt class="descname">__init__</tt><big>(</big><em>*args</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pygeode.Yearless.__init__" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="pygeode.Yearless.days_in_month">
<tt class="descclassname">Yearless.</tt><tt class="descname">days_in_month</tt><big>(</big><em>yr</em>, <em>mn</em><big>)</big><a class="headerlink" href="#pygeode.Yearless.days_in_month" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
<p class="topless"><a href="verticalaxes.html"
title="previous chapter">Vertical axes object reference</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="dataset.html"
title="next chapter">Dataset overview</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/timeaxes.txt"
rel="nofollow">Show Source</a></li>
</ul>
<div id="searchbox" style="display: none">
<h3>Quick search</h3>
<form class="search" action="search.html" method="get">
<input type="text" name="q" />
<input type="submit" value="Go" />
<input type="hidden" name="check_keywords" value="yes" />
<input type="hidden" name="area" value="default" />
</form>
<p class="searchtip" style="font-size: 90%">
Enter search terms or a module, class or function name.
</p>
</div>
<script type="text/javascript">$('#searchbox').show(0);</script>
</div>
</div>
<div class="clearer"></div>
</div>
<div class="related">
<h3>Navigation</h3>
<ul>
<li class="right" style="margin-right: 10px">
<a href="genindex.html" title="General Index"
>index</a></li>
<li class="right" >
<a href="dataset.html" title="Dataset overview"
>next</a> |</li>
<li class="right" >
<a href="verticalaxes.html" title="Vertical axes object reference"
>previous</a> |</li>
<li><a href="index.html">PyGeode 1.0 alpha documentation</a> »</li>
<li><a href="reference.html" >Reference</a> »</li>
<li><a href="axes.html" >Axis class overview</a> »</li>
</ul>
</div>
<div class="footer">
© Copyright 2013, Mike Neish, Peter Hitchcock.
Last updated on Sep 13, 2015.
Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.2.
</div>
</body>
</html>