3.5.3.11. test_plot_map_arcgisimage.py – Test map()
with an arcgisimage as background¶
"""Test :func:`~vacumm.misc.plot.map` with an arcgisimage as background"""
# Imports
from vcmq import code_file_name, map, os
# Plot
figfile = code_file_name(ext='png')
if os.path.exists(figfile): os.remove(figfile)
map(lon=(-7, -3), lat=(46, 49), arcgisimage='ocean',
show=True, close=True,
epsg=4326, savefig=figfile, res=None)