Ejemplo n.º 1
0
def test_global_map():
    show = plt.show
    plt.show = lambda *args, **kwargs: None
    import cartopy.examples.global_map as c

    c.main()
    plt.show = show
Ejemplo n.º 2
0
def test_contour_label():
    import cartopy.examples.contour_labels as example
    example.main()
Ejemplo n.º 3
0
def test_global_map():
    import cartopy.examples.global_map as c
    c.main()
Ejemplo n.º 4
0
def test_global_map():
    show = plt.show
    plt.show = lambda *args, **kwargs: None
    import cartopy.examples.global_map as c
    c.main()
    plt.show = show