-
Couldn't load subscription status.
- Fork 297
Closed
Labels
Milestone
Description
Works:
import iris.plot as iplt
import iris.tests.stock as stock
contour_map = iplt.contourf(stock.global_pp(), 6)
iplt.show()
Fails (because it triggers a basemap workaround):
import iris.plot as iplt
import iris.tests.stock as stock
iplt.map_setup(lon_range=[-180,180],lat_range=[-90,90])
contour_map = iplt.contourf(stock.global_pp(), 6)
iplt.show()
NB. This should hopefully be resolved by #67.