forked from pygeode/pygeode.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhorizontalaxes.html
385 lines (362 loc) · 23.3 KB
/
horizontalaxes.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
<!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>Horizonal axis 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="Vertical axes object reference" href="verticalaxes.html" />
<link rel="prev" title="NamedAxis object reference" href="namedaxis.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="verticalaxes.html" title="Vertical axes object reference"
accesskey="N">next</a> |</li>
<li class="right" >
<a href="namedaxis.html" title="NamedAxis 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="horizonal-axis-objects-reference">
<h1>Horizonal axis objects reference<a class="headerlink" href="#horizonal-axis-objects-reference" title="Permalink to this headline">¶</a></h1>
<dl class="class">
<dt id="pygeode.XAxis">
<em class="property">class </em><tt class="descclassname">pygeode.</tt><tt class="descname">XAxis</tt><a class="headerlink" href="#pygeode.XAxis" 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 horizontal coordinates, plotted by default on
the horizontal axis in contour plots and line plots. No new or overridden methods.</p>
</dd></dl>
<dl class="class">
<dt id="pygeode.YAxis">
<em class="property">class </em><tt class="descclassname">pygeode.</tt><tt class="descname">YAxis</tt><a class="headerlink" href="#pygeode.YAxis" 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 horizontal coordinates, plotted by
default on the horizontal axis in line plots, but on the vertical in contour
plots. No new or overridden methods.</p>
</dd></dl>
<dl class="class">
<dt id="pygeode.Lon">
<em class="property">class </em><tt class="descclassname">pygeode.</tt><tt class="descname">Lon</tt><a class="headerlink" href="#pygeode.Lon" title="Permalink to this definition">¶</a></dt>
<dd><p>Inherits from <a class="reference internal" href="#pygeode.YAxis" title="pygeode.YAxis"><tt class="xref py py-class docutils literal"><span class="pre">YAxis</span></tt></a></p>
<p>Represents longitude (in degrees East by default). Regular longitude grids
can be created with the helper method <a class="reference internal" href="#pygeode.regularlon" title="pygeode.regularlon"><tt class="xref py py-func docutils literal"><span class="pre">regularlon()</span></tt></a>.</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.Lon.__init__" title="pygeode.Lon.__init__"><tt class="xref py py-obj docutils literal"><span class="pre">Lon.__init__</span></tt></a>(values[, name, atts, plotatts, ...])</td>
<td>Create a new Axis object with the given values.</td>
</tr>
<tr class="row-even"><td><a class="reference internal" href="#pygeode.Lon.formatvalue" title="pygeode.Lon.formatvalue"><tt class="xref py py-obj docutils literal"><span class="pre">Lon.formatvalue</span></tt></a>(value[, fmt, units, unitstr])</td>
<td>Returns formatted string representation of longitude <tt class="docutils literal"><span class="pre">value</span></tt>.</td>
</tr>
<tr class="row-odd"><td><a class="reference internal" href="#pygeode.Lon.locator" title="pygeode.Lon.locator"><tt class="xref py py-obj docutils literal"><span class="pre">Lon.locator</span></tt></a>()</td>
<td></td>
</tr>
</tbody>
</table>
</dd></dl>
<dl class="class">
<dt id="pygeode.Lat">
<em class="property">class </em><tt class="descclassname">pygeode.</tt><tt class="descname">Lat</tt><a class="headerlink" href="#pygeode.Lat" title="Permalink to this definition">¶</a></dt>
<dd><p>Inherits from <a class="reference internal" href="#pygeode.YAxis" title="pygeode.YAxis"><tt class="xref py py-class docutils literal"><span class="pre">YAxis</span></tt></a></p>
<p>Represents latitude (in degrees North by default). Evenly spaced and gaussian
latitude grids can be created with the helper functions
<a class="reference internal" href="#pygeode.regularlat" title="pygeode.regularlat"><tt class="xref py py-func docutils literal"><span class="pre">regularlat()</span></tt></a> and <a class="reference internal" href="#pygeode.gausslat" title="pygeode.gausslat"><tt class="xref py py-func docutils literal"><span class="pre">gausslat()</span></tt></a>.</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.Lat.__init__" title="pygeode.Lat.__init__"><tt class="xref py py-obj docutils literal"><span class="pre">Lat.__init__</span></tt></a>(values[, weights])</td>
<td></td>
</tr>
<tr class="row-even"><td><a class="reference internal" href="#pygeode.Lat.formatvalue" title="pygeode.Lat.formatvalue"><tt class="xref py py-obj docutils literal"><span class="pre">Lat.formatvalue</span></tt></a>(value[, fmt, units, unitstr])</td>
<td>Returns formatted string representation of latitude <tt class="docutils literal"><span class="pre">value</span></tt>.</td>
</tr>
<tr class="row-odd"><td><a class="reference internal" href="#pygeode.Lat.locator" title="pygeode.Lat.locator"><tt class="xref py py-obj docutils literal"><span class="pre">Lat.locator</span></tt></a>()</td>
<td></td>
</tr>
</tbody>
</table>
</dd></dl>
<p class="rubric">Utility functions</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.regularlon" title="pygeode.regularlon"><tt class="xref py py-obj docutils literal"><span class="pre">regularlon</span></tt></a>(n[, origin, order, repeat_origin])</td>
<td>Constructs a regularly spaced <a class="reference internal" href="#pygeode.Lon" title="pygeode.Lon"><tt class="xref py py-class docutils literal"><span class="pre">Lon</span></tt></a> axis with n longitudes, from origin to origin + 360.</td>
</tr>
<tr class="row-even"><td><a class="reference internal" href="#pygeode.regularlat" title="pygeode.regularlat"><tt class="xref py py-obj docutils literal"><span class="pre">regularlat</span></tt></a>(n[, order, inc_poles])</td>
<td>Constructs a regularly spaced <a class="reference internal" href="#pygeode.Lat" title="pygeode.Lat"><tt class="xref py py-class docutils literal"><span class="pre">Lat</span></tt></a> axis with n latitudes.</td>
</tr>
<tr class="row-odd"><td><a class="reference internal" href="#pygeode.gausslat" title="pygeode.gausslat"><tt class="xref py py-obj docutils literal"><span class="pre">gausslat</span></tt></a>(n[, order, axis_dict])</td>
<td>Constructs a Gaussian <a class="reference internal" href="#pygeode.Lat" title="pygeode.Lat"><tt class="xref py py-class docutils literal"><span class="pre">Lat</span></tt></a> axis with n latitudes.</td>
</tr>
</tbody>
</table>
<dl class="method">
<dt id="pygeode.Lon.__init__">
<tt class="descclassname">Lon.</tt><tt class="descname">__init__</tt><big>(</big><em>values</em>, <em>name=None</em>, <em>atts=None</em>, <em>plotatts=None</em>, <em>rtol=None</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pygeode.Lon.__init__" title="Permalink to this definition">¶</a></dt>
<dd><p>Create a new Axis object with the given values.</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>values</strong> : numpy.ndarray</p>
<blockquote>
<div><p>A one-dimensional coordinate defining the axis grid.</p>
</div></blockquote>
<p><strong>name</strong> : string (optional)</p>
<blockquote>
<div><p>What to call the axis (i.e. for plot titles & when saving to file)</p>
</div></blockquote>
<p><strong>atts</strong> : dict (optional)</p>
<blockquote>
<div><p>Any additional metadata to associate with the axis. The dictionary
keys should be strings.</p>
</div></blockquote>
<p><strong>plotatts</strong> : dict (optional)</p>
<blockquote>
<div><p>Parameters that control plotting behaviour; default values are available.
The dictionary keys should be strings.</p>
</div></blockquote>
<p><strong>rtol</strong> : float</p>
<blockquote class="last">
<div><p>A relative tolerance used for identifying an element of this axis.</p>
</div></blockquote>
</td>
</tr>
</tbody>
</table>
<p class="rubric">Notes</p>
<p>All subclasses of <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> need to call this __init__ method within
their own __init__, to properly initialize all attributes.</p>
</dd></dl>
<dl class="method">
<dt id="pygeode.Lon.formatvalue">
<tt class="descclassname">Lon.</tt><tt class="descname">formatvalue</tt><big>(</big><em>value</em>, <em>fmt=None</em>, <em>units=False</em>, <em>unitstr=None</em><big>)</big><a class="headerlink" href="#pygeode.Lon.formatvalue" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns formatted string representation of longitude <tt class="docutils literal"><span class="pre">value</span></tt>.</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.</p>
</div></blockquote>
<p><strong>fmt</strong> : string (optional)</p>
<blockquote>
<div><p>Format specification; see Notes. 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>If <tt class="docutils literal"><span class="pre">True</span></tt>, will include the units in the string returned.
Default is <tt class="docutils literal"><span class="pre">False</span></tt>.</p>
</div></blockquote>
<p><strong>unitstr</strong> : string (optional)</p>
<blockquote>
<div><p>String to use for the units; default is <tt class="docutils literal"><span class="pre">self.units</span></tt>.</p>
</div></blockquote>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first last"><strong>Formatted representation of the latitude. See notes.</strong> :</p>
</td>
</tr>
</tbody>
</table>
<p class="rubric">Notes</p>
<p>If fmt is includes the character ‘E’, the hemisphere (‘E’ or ‘W’) is
appended to the string. The value is wrapped to lie between 0 and 360., and
the eastern hemisphere is defined as values less than 180. Optionally, the
boundary between the hemispheres can be specified by adding, for example,
‘<360’ after the ‘E’; in this case all values less than 360 would have ‘E’
appended. Otherwise the behaviour is like <tt class="xref py py-func docutils literal"><span class="pre">Var.formatvalue()</span></tt>.</p>
<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">t1</span>
<span class="gp">>>> </span><span class="k">print</span> <span class="n">t1</span><span class="o">.</span><span class="n">lon</span><span class="o">.</span><span class="n">formatvalue</span><span class="p">(</span><span class="mi">270</span><span class="p">)</span>
<span class="go"> 270 E</span>
<span class="gp">>>> </span><span class="k">print</span> <span class="n">t1</span><span class="o">.</span><span class="n">lon</span><span class="o">.</span><span class="n">formatvalue</span><span class="p">(</span><span class="o">-</span><span class="mf">20.346</span><span class="p">,</span> <span class="s">'</span><span class="si">%.4g</span><span class="s">E'</span><span class="p">)</span>
<span class="go"> 20.35W</span>
<span class="gp">>>> </span><span class="k">print</span> <span class="n">t1</span><span class="o">.</span><span class="n">lon</span><span class="o">.</span><span class="n">formatvalue</span><span class="p">(</span><span class="o">-</span><span class="mf">192.4</span><span class="p">,</span> <span class="s">'</span><span class="si">%.3g</span><span class="s">'</span><span class="p">)</span>
<span class="go"> -192</span>
</pre></div>
</div>
</dd></dl>
<dl class="method">
<dt id="pygeode.Lon.locator">
<tt class="descclassname">Lon.</tt><tt class="descname">locator</tt><big>(</big><big>)</big><a class="headerlink" href="#pygeode.Lon.locator" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="function">
<dt id="pygeode.regularlon">
<tt class="descclassname">pygeode.</tt><tt class="descname">regularlon</tt><big>(</big><em>n</em>, <em>origin=0.0</em>, <em>order=1</em>, <em>repeat_origin=False</em><big>)</big><a class="headerlink" href="#pygeode.regularlon" title="Permalink to this definition">¶</a></dt>
<dd><p>Constructs a regularly spaced <a class="reference internal" href="#pygeode.Lon" title="pygeode.Lon"><tt class="xref py py-class docutils literal"><span class="pre">Lon</span></tt></a> axis with n longitudes, from
origin to origin + 360. If repeat_origin is set to True, the final point is
equal to origin + 360.</p>
</dd></dl>
<dl class="method">
<dt id="pygeode.Lat.__init__">
<tt class="descclassname">Lat.</tt><tt class="descname">__init__</tt><big>(</big><em>values</em>, <em>weights=None</em>, <em>**kwargs</em><big>)</big><a class="headerlink" href="#pygeode.Lat.__init__" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="method">
<dt id="pygeode.Lat.formatvalue">
<tt class="descclassname">Lat.</tt><tt class="descname">formatvalue</tt><big>(</big><em>value</em>, <em>fmt=None</em>, <em>units=False</em>, <em>unitstr=None</em><big>)</big><a class="headerlink" href="#pygeode.Lat.formatvalue" title="Permalink to this definition">¶</a></dt>
<dd><p>Returns formatted string representation of latitude <tt class="docutils literal"><span class="pre">value</span></tt>.</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.</p>
</div></blockquote>
<p><strong>fmt</strong> : string (optional)</p>
<blockquote>
<div><p>Format specification; see Notes. 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>If <tt class="docutils literal"><span class="pre">True</span></tt>, will include the units in the string returned.
Default is <tt class="docutils literal"><span class="pre">False</span></tt>.</p>
</div></blockquote>
<p><strong>unitstr</strong> : string (optional)</p>
<blockquote>
<div><p>String to use for the units; default is <tt class="docutils literal"><span class="pre">self.units</span></tt>.</p>
</div></blockquote>
</td>
</tr>
<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body"><p class="first last"><strong>Formatted representation of the latitude. See notes.</strong> :</p>
</td>
</tr>
</tbody>
</table>
<p class="rubric">Notes</p>
<p>If the last character of fmt is ‘N’, then the absolute value of <tt class="docutils literal"><span class="pre">value</span></tt>
is formatted using the fmt[:-1] as the format specification, and the hemisphere is
added, using ‘N’ for values greater than 0 and ‘S’ for values less than 0. The value
0 is formatted as ‘EQ’. Otherwise the behaviour is like <tt class="xref py py-func docutils literal"><span class="pre">Var.formatvalue()</span></tt>.</p>
<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">t1</span>
<span class="gp">>>> </span><span class="k">print</span> <span class="n">t1</span><span class="o">.</span><span class="n">lat</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="go"> EQ</span>
<span class="gp">>>> </span><span class="k">print</span> <span class="n">t1</span><span class="o">.</span><span class="n">lat</span><span class="o">.</span><span class="n">formatvalue</span><span class="p">(</span><span class="o">-</span><span class="mf">43.61</span><span class="p">,</span> <span class="s">'</span><span class="si">%.3g</span><span class="s">N'</span><span class="p">)</span>
<span class="go"> 43.6S</span>
<span class="gp">>>> </span><span class="k">print</span> <span class="n">t1</span><span class="o">.</span><span class="n">lat</span><span class="o">.</span><span class="n">formatvalue</span><span class="p">(</span><span class="o">-</span><span class="mf">43.61</span><span class="p">,</span> <span class="s">'</span><span class="si">%.3g</span><span class="s">'</span><span class="p">)</span>
<span class="go"> -43.6</span>
</pre></div>
</div>
</dd></dl>
<dl class="method">
<dt id="pygeode.Lat.locator">
<tt class="descclassname">Lat.</tt><tt class="descname">locator</tt><big>(</big><big>)</big><a class="headerlink" href="#pygeode.Lat.locator" title="Permalink to this definition">¶</a></dt>
<dd></dd></dl>
<dl class="function">
<dt id="pygeode.regularlat">
<tt class="descclassname">pygeode.</tt><tt class="descname">regularlat</tt><big>(</big><em>n</em>, <em>order=1</em>, <em>inc_poles=True</em><big>)</big><a class="headerlink" href="#pygeode.regularlat" title="Permalink to this definition">¶</a></dt>
<dd><p>Constructs a regularly spaced <a class="reference internal" href="#pygeode.Lat" title="pygeode.Lat"><tt class="xref py py-class docutils literal"><span class="pre">Lat</span></tt></a> axis with n latitudes.
If inc_poles is set to True, the grid includes the poles.</p>
</dd></dl>
<dl class="function">
<dt id="pygeode.gausslat">
<tt class="descclassname">pygeode.</tt><tt class="descname">gausslat</tt><big>(</big><em>n</em>, <em>order=1</em>, <em>axis_dict={}</em><big>)</big><a class="headerlink" href="#pygeode.gausslat" title="Permalink to this definition">¶</a></dt>
<dd><p>Constructs a Gaussian <a class="reference internal" href="#pygeode.Lat" title="pygeode.Lat"><tt class="xref py py-class docutils literal"><span class="pre">Lat</span></tt></a> axis with n latitudes.</p>
</dd></dl>
</div>
</div>
</div>
</div>
<div class="sphinxsidebar">
<div class="sphinxsidebarwrapper">
<h4>Previous topic</h4>
<p class="topless"><a href="namedaxis.html"
title="previous chapter">NamedAxis object reference</a></p>
<h4>Next topic</h4>
<p class="topless"><a href="verticalaxes.html"
title="next chapter">Vertical axes object reference</a></p>
<h3>This Page</h3>
<ul class="this-page-menu">
<li><a href="_sources/horizontalaxes.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="verticalaxes.html" title="Vertical axes object reference"
>next</a> |</li>
<li class="right" >
<a href="namedaxis.html" title="NamedAxis 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>