Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions docs/source/glossary.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,8 @@ Glossary
:sorted:

xylim
A sequence of two (pressure, temperature) pairs that specify the bottom left-hand corner and the
top right-hand corner of the plot. The pressure data points must be in units of mb or hPa, and the
temperature data points must be in units of :sup:`o`\ C.
A sequence of two (temperature, entropy) pairs that specify the bottom left-hand corner and the
top right-hand corner of the plot.

dry adiabat
A line of constant potential temperature, measured in units of :sup:`o`\ C. The zeroth dry adiabat line
Expand Down
6 changes: 1 addition & 5 deletions docs/source/plotting.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,6 @@ Here it is used to load the third example data set that contains four columns of
Plotting tephigram data
-----------------------

.. note::
Tephigram *subplots* are currently **not** supported.


Plotting a single data set
^^^^^^^^^^^^^^^^^^^^^^^^^^

Expand Down Expand Up @@ -216,6 +212,6 @@ To fix the extent of a plot, simply specify an :term:`xylim` point to the tephig
dew_point = os.path.join(tephi.DATA_DIR, 'dews.txt')
dew_data = tephi.loadtxt(dew_point, column_titles=('pressure', 'dewpoint'))
dews = zip(dew_data.pressure, dew_data.dewpoint)
tpg = tephi.TephiAxes(xylim=[(1000, 0), (300, 0)])
tpg = tephi.TephiAxes(xylim=[(0, 0), (0, 115)])
tpg.plot(dews)
plt.show()
Loading
Loading