|
1
|
|
|
# Copyright (c) 2008-2017 MetPy Developers. |
|
2
|
|
|
# Distributed under the terms of the BSD 3-Clause License. |
|
3
|
|
|
# SPDX-License-Identifier: BSD-3-Clause |
|
4
|
|
|
"""Test the `indices` module.""" |
|
5
|
|
|
|
|
6
|
|
|
from datetime import datetime |
|
7
|
|
|
|
|
8
|
|
|
from metpy.calc import mean_pressure_weighted, precipitable_water |
|
9
|
|
|
from metpy.io import get_upper_air_data |
|
10
|
|
|
from metpy.io.upperair import UseSampleData |
|
11
|
|
|
from metpy.testing import assert_almost_equal, assert_array_equal |
|
12
|
|
|
from metpy.units import units |
|
13
|
|
|
|
|
14
|
|
|
|
|
15
|
|
|
def test_precipitable_water(): |
|
16
|
|
|
"""Test precipitable water with observed sounding.""" |
|
17
|
|
|
with UseSampleData(): |
|
18
|
|
|
data = get_upper_air_data(datetime(2016, 5, 22, 0), 'DDC', source='wyoming') |
|
19
|
|
|
pw = precipitable_water(data.variables['dewpoint'][:], data.variables['pressure'][:]) |
|
20
|
|
|
truth = (0.8899441949243486 * units('inches')).to('millimeters') |
|
21
|
|
|
assert_array_equal(pw, truth) |
|
22
|
|
|
|
|
23
|
|
|
|
|
24
|
|
|
def test_mean_pressure_weighted(): |
|
25
|
|
|
"""Test pressure-weighted mean wind function with vertical interpolation.""" |
|
26
|
|
|
with UseSampleData(): |
|
27
|
|
|
data = get_upper_air_data(datetime(2016, 5, 22, 0), 'DDC', source='wyoming') |
|
28
|
|
|
u, v = mean_pressure_weighted(data.variables['pressure'][:], |
|
29
|
|
|
data.variables['u_wind'][:], |
|
30
|
|
|
data.variables['v_wind'][:], |
|
31
|
|
|
heights=data.variables['height'][:], |
|
32
|
|
|
depth=6000 * units('meter')) |
|
33
|
|
|
assert_almost_equal(u, 6.0208700094534775 * units('m/s'), 7) |
|
34
|
|
|
assert_almost_equal(v, 7.966031839967931 * units('m/s'), 7) |
|
35
|
|
|
|
|
36
|
|
|
|
|
37
|
|
|
def test_mean_pressure_weighted_elevated(): |
|
38
|
|
|
"""Test pressure-weighted mean wind function with a base above the surface.""" |
|
39
|
|
|
with UseSampleData(): |
|
40
|
|
|
data = get_upper_air_data(datetime(2016, 5, 22, 0), 'DDC', source='wyoming') |
|
41
|
|
|
u, v = mean_pressure_weighted(data.variables['pressure'][:], |
|
42
|
|
|
data.variables['u_wind'][:], |
|
43
|
|
|
data.variables['v_wind'][:], |
|
44
|
|
|
heights=data.variables['height'][:], |
|
45
|
|
|
depth=3000 * units('meter'), |
|
46
|
|
|
bottom=data.variables['height'][0] + 3000 * units('meter')) |
|
47
|
|
|
assert_almost_equal(u, 8.270829843626476 * units('m/s'), 7) |
|
48
|
|
|
assert_almost_equal(v, 1.7392601775853547 * units('m/s'), 7) |
|
49
|
|
|
|