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

后端 未结 2 2028
北荒
北荒 2021-02-08 16:49

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条回答
  •  悲&欢浪女
    2021-02-08 17:29

    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')
    

提交回复
热议问题