using GMT
# Bare-bones plain rose showing arrow towards north and a cross indicating the cardinal directions
basemap(region=(-5,5,-5,5), proj=:merc, figscale=0.4, frame=:none,
rose=(map=true, anchor=(0,0), justify=:CM, width=2.5))
# Fancy rose width a north label
basemap!(rose=(map=true, anchor=(0,0), justify=:CM, width=2.5, fancy=true, labels=",,,N"), xshift=3)
# Fancy directional rose at level 3 with labels
basemap!(rose=(map=true, anchor=(0,0), justify=:CM, width=2.5, fancy=3, labels=true),
region=(-7,7,-5,5), xshift=3.5, show=true)