Guest User

Untitled

a guest
May 27th, 2018
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. proj = ccrs.Orthographic(central_longitude=0.0, central_latitude=50.0)
  2. ax = plt.axes(projection=proj)
  3. ax.add_feature(cartopy.feature.LAND)
  4. ax.add_feature(cartopy.feature.OCEAN)
  5. ax.add_feature(cartopy.feature.COASTLINE) #, edgecolor="brown")
  6. ax.gridlines()
  7. plt.tight_layout()
  8. plt.show() ; plt.close()
Add Comment
Please, Sign In to add comment