Help me write a Python code to draw a map of Zhejiang Province

def draw_zhejiang_map(): import matplotlib.pyplot as plt import geopandas as gpd from shapely.geometry import Polygon # Read provincial administrative regions zhejiang_map = gpd.read_file('./shp/Zhejiang.shp', encoding='utf-8 ') # Adjust the canvas size fig, ax = plt.subplots(1, figsize=(12, 12)) # Draw the provincial administrative boundaries zhe

Guess you like

Origin blog.csdn.net/weixin_42576410/article/details/129576613