91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何利用GeoPandas繪制專題圖

發布時間:2021-11-30 10:31:57 來源:億速云 閱讀:317 作者:小新 欄目:大數據

小編給大家分享一下如何利用GeoPandas繪制專題圖,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!

練習使用geopandas繪制專題圖,僅供參考。

import pandas as pd
import geopandas as gp
import contextily as ctx
import matplotlib.pyplot as plt
from shapely.geometry import Point
import matplotlib.patches as mpatches
from matplotlib_scalebar.scalebar import ScaleBar

chi=gp.read_file("population_data/chi_shp/省.shp").to_crs(epsg=3415)
nine_lines = gp.read_file('population_data/chi_shp/chi_nine_dotted_line.shp',encoding='utf-8')

tai=gp.read_file("population_data/chi_shp/省.shp")
tai=tai[tai['省'].isin(['臺**'])].to_crs(epsg=3415)

fig=plt.figure(figsize=(8,8)) #設置畫布大小
ax = plt.gca()
ax.set_title(chi.columns.values[1],fontsize=14,loc="left")

# 主圖繪制
chi.plot(ax=ax,color='#E24A33',column="需要繪制的數據列名稱",edgecolor='grey',linewidth=0.5,
legend=True,
legend_kwds={
  'labels':['a','v'],
  'loc': 'lower left',
  'title': 'Title',
  'shadow': False,
  'fontsize':8,
  'frameon':False,
  'prop':{'family': 'Times New Roman', 'weight': 'normal', 'size': 12}})

# 添加九**
nine_lines.geometry.to_crs(epsg=3415).plot(ax=ax,
                                            edgecolor='black',
                                            linewidth=2,
                                            alpha=0.5)
# 添加臺**
tai.to_crs(epsg=3415).plot(ax=ax,hatch= "////",label= "缺失值",facecolor='lightgrey')

# 設置繪圖顯示范圍
ax.set(ylim=(-0.3*10**6,4.5*10**6))

# 自定義圖例文字
#     get all the legend labels
# legend_labels = ax.get_legend().get_texts()

# bounds=['q','a']
# # replace the legend labels
# for bound, legend_label in zip(bounds, legend_labels):
#     legend_label.set_text(bound)

# leg = ax.get_legend()
# leg.set_title('Percentage Error (%)',prop={'family': 'Times New Roman', 'weight': 'normal', #'size': 12})

# 副圖框繪制
ax_child = fig.add_axes([0.75, 0.20, 0.15, 0.15]) # left, bottom, width, height

chi.plot(ax=ax_child,color='#E24A33',edgecolor='grey',linewidth=0.5)
chi.plot(ax=ax_child,color='#348ABD',edgecolor='grey',linewidth=0.5)

ax_child = nine_lines.geometry.to_crs(epsg=3415).plot(ax=ax_child,
                                                  edgecolor='black',
                                                  linewidth=2,
                                                  alpha=0.5)
tai.to_crs(epsg=3415).plot(ax=ax_child,hatch= "////",label= "缺失值",facecolor='lightgrey')

ax_child.set(xlim=(-0.5*10**6,1.5*10**6),ylim=(-1.5*10**6,0.8*10**6))

ax_child.set_xticks([])
ax_child.set_yticks([])

# 添加省市名稱注記
# texts=chi.apply(lambda x: ax.annotate(s=x['省'], xy=x.geometry.centroid.coords[0], va='center'
#                                                    ,fontsize=10,arrowprops=dict(arrow, 
                                                     color='k', lw=0.5)), axis=1)
# adjust_text(texts)

# 額外圖例繪制
p1=gp.GeoDataFrame({'geometry':[Point(-1.60*10**6,-0.1*10**6)]})
p1.plot(ax=ax,markersize=100,facecolor='lightgrey',hatch= "////")
ax.text(-1.54*10**6,-0.15*10**6, "NoData",{'family': 'Times New Roman', 'weight': 'normal', 'size': 12})

# 圖例操作
LegendElement = [
                 mpatches.Patch(facecolor='#E24A33', 
                                linestyle='--', 
                                linewidth=1.2,
                                label='1'),
                 mpatches.Patch(facecolor='#348ABD',
                                linestyle='--',
                                linewidth=1.2,
                                label='2')
                ]
ax.legend(handles = LegendElement, loc='lower left',prop={'family': 'Times New Roman', 'weight': 'normal', 'size': 12},frameon=False,shadow=False)


# 添加比例尺
scalebar = ScaleBar(dx=1*10**-3,units='km',length_fraction=0.1,
                    font_properties={'family': 'Times New Roman', 'weight': 'normal', 'size': 12},
                    location=8,sep=1,frameon=False)
ax.add_artist(scalebar)

# 添加指北針
x, y, arrow_length = 0.42, 0.09, 0.07
ax.annotate('N', xy=(x, y), xytext=(x, y-arrow_length),
            arrowprops=dict(facecolor='black', width=4, headwidth=7),
            ha='center', va='center', fontsize=10,
            xycoords=ax.transAxes)
# 添加底圖
# ctx.add_basemap(ax,crs="epsg:3415",source=ctx.providers.OpenStreetMap.Mapnik(apiKey="*"))
# ctx.add_basemap(ax_child,crs="epsg:3415",source=ctx.providers.OpenStreetMap.CH(apiKey="*"))

# 設置刻度
# ax.set_axis_off()    
# ax_child.set_axis_off()
ax.set_xticks([])
ax.set_yticks([])

# 保存地圖
# plt.savefig("filename",dpi=600,bbox_inches='tight')

輸出圖大致如下所示:

如何利用GeoPandas繪制專題圖

以上是“如何利用GeoPandas繪制專題圖”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

大邑县| 淅川县| 曲水县| 孝感市| 兰溪市| 鄢陵县| 社旗县| 新沂市| 固安县| 陈巴尔虎旗| 佛坪县| 宁阳县| 西吉县| 禹州市| 阜平县| 象州县| 聊城市| 汶川县| 南涧| 望江县| 龙门县| 彰化县| 泰顺县| 临澧县| 富顺县| 乡城县| 错那县| 藁城市| 宿松县| 德化县| 南昌市| 虎林市| 河北区| 安宁市| 宁国市| 综艺| 佛山市| 瓦房店市| 航空| 社旗县| 鄂托克旗|