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

作者:caishunzhe 时间:2021-09-10 16:15:56 

参考:

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绘制台风轨迹图的示例代码

来源:https://www.cnblogs.com/caishunzhe/p/13640898.html

标签:python,绘制,台风,轨迹图
0
投稿

猜你喜欢

  • 设计的商业价值

    2009-08-13 14:43:00
  • python 网络编程详解及简单实例

    2021-09-02 06:40:56
  • Python数据分析pandas模块用法实例详解

    2023-01-25 00:47:29
  • 详解Pandas 处理缺失值指令大全

    2022-06-20 07:15:23
  • opencv形态学中的孔洞填充详细图解

    2021-08-14 00:44:10
  • python list排序的两种方法及实例讲解

    2021-01-14 03:42:20
  • Python Pygame实现俄罗斯方块

    2023-03-17 07:18:03
  • 如何对numpy 矩阵进行通道间求均值

    2023-07-24 20:37:41
  • python将一个英文语句以单词为单位逆序排放的方法

    2022-03-23 16:48:08
  • Python 实现把列表中的偶数变成他的平方

    2023-12-13 02:45:18
  • js+ajax实现获取文件大小的方法

    2023-08-12 00:22:07
  • Pandas 稀疏数据结构的实现

    2022-01-29 15:08:32
  • Python帮你解决手机qq微信内存占用太多问题

    2023-04-02 18:14:44
  • python基础之循环语句

    2022-03-14 23:00:53
  • Python入门基础之变量及字符串

    2023-08-08 06:10:11
  • PHP导出数据超时的优化建议

    2023-06-29 18:36:32
  • z-blog文章摘要图文混排

    2009-02-28 13:49:00
  • ASP图片分页代码 (通用)

    2009-06-22 12:57:00
  • python opencv之SURF算法示例

    2021-03-06 13:10:28
  • Python中最快的循环姿势实例详解

    2022-12-16 01:30:50
  • asp之家 网络编程 m.aspxhome.com