帮我写一个Python代码,绘制浙江省地图

def draw_zhejiang_map(): import matplotlib.pyplot as plt import geopandas as gpd from shapely.geometry import Polygon # 读取省级行政区域 zhejiang_map = gpd.read_file('./shp/Zhejiang.shp', encoding='utf-8') # 调整画布大小 fig, ax = plt.subplots(1, figsize=(12, 12)) # 绘制省份行政边界 zhe

猜你喜欢

转载自blog.csdn.net/weixin_42576410/article/details/129576613