コード例 #1
0
ファイル: test_nexrad.py プロジェクト: Cloudmon88/MetPy
def test31_clear_air():
    'Test checking whether VCP 31 is clear air mode'
    assert not is_precip_mode(31), 'VCP 31 is not precip'
コード例 #2
0
ファイル: test_nexrad.py プロジェクト: Cloudmon88/MetPy
def test21_precip():
    'Test checking whether VCP 21 is precipitation mode'
    assert is_precip_mode(21), 'VCP 21 is precip'
コード例 #3
0
ファイル: test_nexrad.py プロジェクト: Cloudmon88/MetPy
def test11_precip():
    'Test checking whether VCP 11 is precipitation mode'
    assert is_precip_mode(11), 'VCP 11 is precip'
コード例 #4
0
ファイル: test_nexrad.py プロジェクト: wqshen/MetPy
 def test11(self):
     assert is_precip_mode(11), 'VCP 11 is precip'
コード例 #5
0
ファイル: test_nexrad.py プロジェクト: wqshen/MetPy
 def test31(self):
     assert not is_precip_mode(31), 'VCP 31 is not precip'
コード例 #6
0
def test31_clear_air():
    'Test checking whether VCP 31 is clear air mode'
    assert not is_precip_mode(31), 'VCP 31 is not precip'
コード例 #7
0
ファイル: test_nexrad.py プロジェクト: wqshen/MetPy
 def test21(self):
     assert is_precip_mode(21), 'VCP 21 is precip'
コード例 #8
0
def test11_precip():
    'Test checking whether VCP 11 is precipitation mode'
    assert is_precip_mode(11), 'VCP 11 is precip'
コード例 #9
0
def test21_precip():
    'Test checking whether VCP 21 is precipitation mode'
    assert is_precip_mode(21), 'VCP 21 is precip'
コード例 #10
0
ファイル: test_nexrad.py プロジェクト: lesserwhirls/MetPy
 def test31(self):
     assert not is_precip_mode(31), 'VCP 31 is not precip'
コード例 #11
0
ファイル: test_nexrad.py プロジェクト: lesserwhirls/MetPy
 def test11(self):
     assert is_precip_mode(11), 'VCP 11 is precip'
コード例 #12
0
ファイル: test_nexrad.py プロジェクト: lesserwhirls/MetPy
 def test21(self):
     assert is_precip_mode(21), 'VCP 21 is precip'