@@ -64,6 +64,9 @@ def plot_airmass(target, observer, time, ax=None, style_kwargs=None,
64
64
object. For instance, ``Time(['2000-1-1 23:00:00', '2000-1-1
65
65
23:30:00'])`` will result in a plot with only two airmass measurements.
66
66
67
+ For examples with plots, visit the astroplan Read the Docs
68
+ documentation [1]_.
69
+
67
70
Parameters
68
71
----------
69
72
target : `~astroplan.FixedTarget`
@@ -112,8 +115,10 @@ def plot_airmass(target, observer, time, ax=None, style_kwargs=None,
112
115
If user wishes to change these, use ``ax.\<set attribute\>`` before drawing
113
116
or saving plot:
114
117
115
- TODO:
116
- 1) Timezones?
118
+ References
119
+ ----------
120
+ .. [1] astroplan plotting tutorial: https://astroplan.readthedocs.io/en/latest/tutorials/plots.html#time-dependent-plots
121
+
117
122
"""
118
123
# Import matplotlib, set style sheet
119
124
if style_sheet is not None :
@@ -221,6 +226,9 @@ def plot_parallactic(target, observer, time, ax=None, style_kwargs=None,
221
226
object. For instance, ``Time(['2000-1-1 23:00:00', '2000-1-1 23:30:00'])``
222
227
will result in a plot with only two parallactic angle measurements.
223
228
229
+ For examples with plots, visit the astroplan Read the Docs
230
+ documentation [1]_.
231
+
224
232
Parameters
225
233
----------
226
234
target : `~astroplan.FixedTarget`
@@ -254,8 +262,9 @@ def plot_parallactic(target, observer, time, ax=None, style_kwargs=None,
254
262
ax : `~matplotlib.axes.Axes`
255
263
An ``Axes`` object with added parallactic angle vs. time plot.
256
264
257
- TODO:
258
- 1) observe_timezone -- update with info from observer?
265
+ References
266
+ ----------
267
+ .. [1] astroplan plotting tutorial: https://astroplan.readthedocs.io/en/latest/tutorials/plots.html#time-dependent-plots
259
268
"""
260
269
# Import matplotlib, set style sheet
261
270
if style_sheet is not None :
0 commit comments