Skip to content

Instantly share code, notes, and snippets.

@briochemc
Created June 11, 2019 02:22
Show Gist options
  • Save briochemc/10e891bdb7da49fc4bf5467a5876434f to your computer and use it in GitHub Desktop.
Save briochemc/10e891bdb7da49fc4bf5467a5876434f to your computer and use it in GitHub Desktop.
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