python 颜色条_python – 在Matplotlib / Cartopy中创建颜色条图例

在Python中,利用Cartopy和Matplotlib制作地理热图时,遇到添加颜色条图例的问题。代码示例展示了如何将国家名称与用户数量对应,并用Blues颜色映射填充地图。现在需要解决如何在GeoAxesSubplot上添加颜色条图例,以及探讨适用于地理热图的最佳库。
摘要由CSDN通过智能技术生成

我使用了我的应用程序用户数量的cartopy和matplotlib制作了地理热图,但是在添加颜色条图例时遇到了问题:

import cartopy.crs as ccrs

import cartopy.io.shapereader as shpreader

import matplotlib.pyplot as plt

import matplotlib as mpl

import numpy as np

cmap = mpl.cm.Blues

# Countries is a dictionary of {"country_name": number of users}, for example

countries = {"United States": 100, "Canada": 50, "China": 10}

max_users = float(max(countries.values()))

shapename = 'admin_0_countries'

countries_shp = shpreader.natural_earth(resolution='110m', category='cultural', name=shapename)

ax = plt.axes(projection=ccrs.Robinson())

for country in shpreader.Reader(countries_shp).records():

name = country.attributes['name_long']

num_users = countries[name]

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值