這篇文章給大家介紹怎么使用Python對站點數(shù)據(jù)執(zhí)行徑向基函數(shù)插值可視化,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
成都創(chuàng)新互聯(lián)服務(wù)項目包括張掖網(wǎng)站建設(shè)、張掖網(wǎng)站制作、張掖網(wǎng)頁制作以及張掖網(wǎng)絡(luò)營銷策劃等。多年來,我們專注于互聯(lián)網(wǎng)行業(yè),利用自身積累的技術(shù)優(yōu)勢、行業(yè)經(jīng)驗、深度合作伙伴關(guān)系等,向廣大中小型企業(yè)、政府機(jī)構(gòu)等提供互聯(lián)網(wǎng)行業(yè)的解決方案,張掖網(wǎng)站推廣取得了明顯的社會效益與經(jīng)濟(jì)效益。目前,我們服務(wù)的客戶以成都為中心已經(jīng)輻射到張掖省份的部分城市,未來相信會繼續(xù)擴(kuò)大服務(wù)區(qū)域并繼續(xù)獲得客戶的支持與信任!
import numpy as np
import pandas as pd
from scipy.interpolate import Rbf
import cartopy.crs as ccrs
import cartopy.feature as cfeat
from cartopy.io.shapereader import Reader
from cartopy.mpl.gridliner import LONGITUDE_FORMATTER,LATITUDE_FORMATTER
import matplotlib.pyplot as plt
plt.rcParams['font.sans-serif']=['SimHei']#正常顯示中文
plt.rcParams['axes.unicode_minus']=False#正常顯示負(fù)號
climate = pd.read_excel('yunnanclimate.xlsx',header=None,sep='\s+',names=['站號','lon','lat','降水','氣溫'])#print(climate)
#讀取climate里面的具體數(shù)據(jù)
lon = climate['lon']
lat = climate['lat']
rain_data = climate['降水']
#設(shè)置經(jīng)緯度范圍
slon = np.linspace(97.85,105.21,36)
slat = np.linspace(21.45,28.50,36)
slon,slat = np.meshgrid(slon,slat)
#開始插值,使用徑向基函數(shù)Rbf
func = Rbf(lon,lat,rain_data,function='cubic')
rainX = func(slon,slat)
shp_path = r'D:\GeoCAS\Python\yunnan.shp'#設(shè)置絕對路徑
proj = ccrs.PlateCarree()#設(shè)置投影
fig = plt.figure(figsize=(5,5),dpi=300)
ax = fig.subplots(1, 1, subplot_kw={'projection': proj})
extent = [97.85,105.21,21.45,28.50]#限定經(jīng)緯度范圍
reader = Reader(shp_path)#讀取shp矢量
yunnan = cfeat.ShapelyFeature(reader.geometries(),proj,edgecolor='k',facecolor='none')#設(shè)定shp特征
ax.add_feature(yunnan,linewidth=0.5)
ax.set_extent(extent,crs=proj)
gl = ax.gridlines(crs=ccrs.PlateCarree(),draw_labels=True,linestyle='-')
gl.xlabels_top=False
gl.ylabels_right=False
gl.xformatter = LONGITUDE_FORMATTER#以經(jīng)緯度格式顯示xy軸
gl.yformatter = LATITUDE_FORMATTER
gl.xlabel_style={'size':6}#設(shè)置xy字體大小
gl.ylabel_style={'size':6}
h = ax.contourf(slon,slat,rainX,cmap='viridis',extend='both')
plt.colorbar(h,orientation='vertical')
plt.show()
關(guān)于怎么使用Python對站點數(shù)據(jù)執(zhí)行徑向基函數(shù)插值可視化就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。