예제 #1
0
파일: test_vis.py 프로젝트: s-m-e/wradlib
 def test_add_lines(self):
     fig, ax = pl.subplots()
     x = np.arange(0, 10)
     y = np.arange(0, 10)
     xy = np.dstack((x, y))
     vis.add_lines(ax, xy)
     vis.add_lines(ax, np.array([xy]))
예제 #2
0
파일: test_vis.py 프로젝트: wradlib/wradlib
 def test_add_lines(self):
     fig, ax = pl.subplots()
     x = np.arange(0, 10)
     y = np.arange(0, 10)
     xy = np.dstack((x, y))
     vis.add_lines(ax, xy)
     vis.add_lines(ax, np.array([xy]))