Guest User

Untitled

a guest
May 27th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. ax = plt.axes(projection=ccrs.Robinson(central_longitude=10))
  2. ax.add_feature(cartopy.feature.LAND)
  3. ax.add_feature(cartopy.feature.OCEAN)
  4. ax.coastlines(color="grey") # Or you could do:
  5. #ax.add_feature(cartopy.feature.COASTLINE)
  6. plt.tight_layout()
  7. plt.show() ; plt.close()
Add Comment
Please, Sign In to add comment