Why do my google tiles look poor in a Cartopy map?

后端 未结 2 936
梦毁少年i
梦毁少年i 2021-02-08 16:37

I am a bit puzzled by the rendering of google tiles with Cartopy. The map looks extremely poor compared to the standard google map look.

Example (code from https://ocefp

2条回答
  •  猫巷女王i
    2021-02-08 17:20

    There is a small typo in the accepted answer.

    ax.add_image(request, 10, interpolation='spine36')
    

    should be

    ax.add_image(request, 10, interpolation='spline36')
    

提交回复
热议问题