Skip to content

Instantly share code, notes, and snippets.

@briochemc
Created June 11, 2019 02:22
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
ENV["MPLBACKEND"]="qt5agg"
"qt5agg"
using PyPlot, PyCall
clf()
ax = subplot(projection=ccrs.NearsidePerspective(central_latitude=10.0, central_longitude=170.0, satellite_height=100000000.0))
ax.add_feature(cfeature.NaturalEarthFeature("physical", "ocean", "50m", edgecolor="face", facecolor="#4063d8"))
ax.gridlines(xlocs=collect(-180:30:180), ylocs=collect(-90:30:90), linewidth = 2, color="black", alpha = 1.0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment