Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updates docs for latitude units #1017

Merged
merged 1 commit into from Mar 21, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
8 changes: 4 additions & 4 deletions metpy/calc/kinematics.py
Expand Up @@ -604,7 +604,7 @@ def absolute_vorticity(u, v, dx, dy, lats, dim_order='yx'):
The grid spacing(s) in the y-direction. If an array, there should be one item less than
the size of `u` along the applicable axis.
lats : (M, N) ndarray
latitudes of the wind data
latitudes of the wind data in radians or with appropriate unit information attached

Returns
-------
Expand Down Expand Up @@ -652,7 +652,7 @@ def potential_vorticity_baroclinic(potential_temperature, pressure, u, v, dx, dy
The grid spacing(s) in the y-direction. If an array, there should be one item less than
the size of `u` along the applicable axis.
lats : (M, N) ndarray
latitudes of the wind data
latitudes of the wind data in radians or with appropriate unit information attached
axis : int, optional
The axis corresponding to the vertical dimension in the potential temperature
and pressure arrays, defaults to 0, the first dimension.
Expand Down Expand Up @@ -728,7 +728,7 @@ def potential_vorticity_barotropic(heights, u, v, dx, dy, lats, dim_order='yx'):
The grid spacing(s) in the y-direction. If an array, there should be one item less than
the size of `u` along the applicable axis.
lats : (M, N) ndarray
latitudes of the wind data
latitudes of the wind data in radians or with appropriate unit information attached

Returns
-------
Expand Down Expand Up @@ -780,7 +780,7 @@ def inertial_advective_wind(u, v, u_geostrophic, v_geostrophic, dx, dy, lats):
The grid spacing(s) in the y-direction. If an array, there should be one item less than
the size of `u` along the applicable axis.
lats : (M, N) ndarray
latitudes of the wind data
latitudes of the wind data in radians or with appropriate unit information attached

Returns
-------
Expand Down