proplot-dev / proplot

🎨 A succinct matplotlib wrapper for making beautiful, publication-quality graphics
https://proplot.readthedocs.io
MIT License
1.11k stars 102 forks source link

Wrong results of combining oceancolor and landcolor #363

Open zxdawn opened 2 years ago

zxdawn commented 2 years ago

Description

When the oceancolor is combined with landcolor, only the ocean is shown.

Steps to reproduce

import proplot as pplt

fig, axs = pplt.subplots(proj='npstere')

axs.format(boundinglat=60, ocean=True, oceancolor='blue1', land=True, landcolor='gray5')

Expected behavior: Like combing facecolor with landcolor:

import proplot as pplt

fig, axs = pplt.subplots(proj='npstere')

axs.format(boundinglat=60, facecolor='blue1', land=True, landcolor='gray5')

image

Actual behavior: image

Proplot version

3.5.1
0.9.5.post202