当前位置: 移动技术网 > IT编程>脚本编程>Python > 使用Python绘制台风轨迹图的示例代码

使用Python绘制台风轨迹图的示例代码

2020年09月22日  | 移动技术网IT编程  | 我要评论
参考:1.basemap绘制中国地图2.basemap生成的图中绘制轨迹使用cma热带气旋最佳路径数据集,对我国周边的台风进行绘制import reimport osimport numpy as n

参考:

1.basemap绘制中国地图

2.basemap生成的图中绘制轨迹

使用cma热带气旋最佳路径数据集,对我国周边的台风进行绘制

import re
import os
import numpy as np
import matplotlib.pyplot as plt
from mpl_toolkits.basemap import basemap




path=r"e:\computer science\数学建模\第二次模拟赛题\附件"
files= os.listdir(path) #得到文件夹下的所有文件名称
data=[]
all=[]
for file in files: #遍历文件夹
  if not os.path.isdir(file): # 判断是否是文件夹,不是文件夹才打开
    f = open(path + "/" + file) # 打开文件
    tmp=f.readlines()
    for i in tmp:
      line=i.split()
      if(line[0]=='66666'):
        if(len(all)>0):
          data.append(all)
        # print(line)
        all=[]
      else:
        we=(int(line[2])*0.1,int(line[3])*0.1)
        all.append(we)
# print(data)
print(len(data))
chn='e:\computer science\数学建模\python_basemap'
plt.figure(figsize=(20,12))
map=basemap(llcrnrlon=70,llcrnrlat=2,urcrnrlon=170,urcrnrlat=58)
map.drawcoastlines()
map.drawcountries()
#添加河流
# map.drawrivers(color='blue',linewidth=0.3)
#添加大陆
map.readshapefile(chn+'\gadm36_chn_shp\gadm36_chn_1',
         'states',color='blue',drawbounds=true)
map.readshapefile(chn+'\gadm36_twn_shp\gadm36_twn_1',
         'taiwan',color='blue',drawbounds=true)
#添加经纬线
parallels = np.linspace(3,55,5)
# print(parallels)
map.drawparallels(parallels,labels=[false,true,false,false],fontsize=5)
meridians = np.linspace(70,170,5)
# print(meridians)
map.drawmeridians(meridians,labels=[false,false,false,true],fontsize=5)
plt.rcparams['savefig.dpi'] = 300 #图片像素
plt.rcparams['figure.dpi'] = 300 #分辨率

ans=1
x=[]
y=[]
for typhoon in data:
  length=len(typhoon)
  print("%d is process!" % ans)
  ans += 1
  for i in range(length):
    x.append(typhoon[i][1])
    y.append(typhoon[i][0])
  # print(x,y)
  # map.plot(x, y, 'c*-', linewidth=2)
  map.plot(x, y, color='r',linewidth=1.5)
  x = []
  y = []
map.fillcontinents()
plt.title(r'$china\ typhoon$',fontsize=24)
# plt.ylim(70, 170)
# plt.xlim(2, 58)
plt.show()

效果图:

以上就是使用python绘制台风轨迹图的示例代码的详细内容,更多关于python绘制轨迹图的资料请关注移动技术网其它相关文章!

如您对本文有疑问或者有任何想说的,请点击进行留言回复,万千网友为您解惑!

相关文章:

验证码:
移动技术网