Skip to content

Commit 55d0259

Browse files
author
Bill Ladwig
committed
Merge tag '1.0.1.3' into develop
Documentation update 3. Fixed some typos and formatting issues.
2 parents 3759e21 + 96cbce8 commit 55d0259

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/wrf/computation.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ def uvmet(u, v, lat, lon, cen_long, cone, meta=True, units="m s-1"):
589589
unstaggered, but must be at least two dimensions. If staggered,
590590
the rightmost dimensions are south_north x west east.
591591
592-
IF staggered, the rightmost dimensions are south_north_stag x
592+
If staggered, the rightmost dimensions are south_north_stag x
593593
west_east.
594594
595595
lat (:class:`xarray.DataArray` or :class:`numpy.ndarray`): The
@@ -630,7 +630,7 @@ def uvmet(u, v, lat, lon, cen_long, cone, meta=True, units="m s-1"):
630630
631631
cen_long (:obj:`float`): The standard longitude for the map projection.
632632
633-
cone (:obj:`float`): The cone factor used for the map project. IF the
633+
cone (:obj:`float`): The cone factor used for the map project. If the
634634
projection is not a conic projection, the *cone* is simply 1.0.
635635
For conic projections, the cone factor is given by:
636636
@@ -1093,7 +1093,7 @@ def ctt(pres_hpa, tkel, qv, qcld, height, terrain, qice=None, meta=True,
10931093
10941094
See Also:
10951095
1096-
:meth:`wrf.getvar`, :meth:`wrf.cfrac`
1096+
:meth:`wrf.getvar`, :meth:`wrf.cloudfrac`
10971097
10981098
"""
10991099

@@ -1185,7 +1185,7 @@ def dbz(pres, tkel, qv, qr, qs=None, qg=None, use_varint=False,
11851185
11861186
See Also:
11871187
1188-
:meth:`wrf.getvar`, :meth:`wrf.cfrac`
1188+
:meth:`wrf.getvar`
11891189
11901190
"""
11911191

src/wrf/interp.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def vertcross(field3d, vert, levels=None, missing=Constants.DEFAULT_FILL,
151151
152152
stagger (:obj:`str`): If using latitude, longitude coordinate pairs
153153
for *start_point*, *end_point*, or *pivot_point*,
154-
set the appropriate grid staggering type for *field2d*. By default,
154+
set the appropriate grid staggering type for *field3d*. By default,
155155
the mass grid is used. The options are:
156156
157157
- 'm': Use the mass grid (default).
@@ -164,8 +164,8 @@ def vertcross(field3d, vert, levels=None, missing=Constants.DEFAULT_FILL,
164164
projection object to use when working with latitude, longitude
165165
coordinates, and must be specified if *wrfin* is None. Default
166166
is None.
167-
168-
pivot_point (:class`wrf.CoordPair`, optional): A coordinate pair for
167+
168+
pivot_point (:class:`wrf.CoordPair`, optional): A coordinate pair for
169169
the pivot point, which indicates the location through which
170170
the plane will pass. Must also specify *angle*. The coordinate
171171
pair can be in x,y grid coordinates or latitude, longitude
@@ -331,7 +331,7 @@ def interpline(field2d, pivot_point=None,
331331
not be used when working with x,y coordinates. Default
332332
is None.
333333
334-
pivot_point (:class`wrf.CoordPair`, optional): A coordinate pair for
334+
pivot_point (:class:`wrf.CoordPair`, optional): A coordinate pair for
335335
the pivot point, which indicates the location through which
336336
the plane will pass. Must also specify *angle*. The coordinate
337337
pair can be in x,y grid coordinates or latitude, longitude

0 commit comments

Comments
 (0)