当前位置:   article > 正文

python天气数据分析与处理,python天气预测模型_天气大数据分析 python

天气大数据分析 python

大家好,小编来为大家解答以下问题,python天气预报可视化分析报告,基于python的天气预测系统研究,现在让我们一起来看看吧!

Source code download: 本文相关源码

[毕业设计]2023-2024年最新最全计算机专业毕设选题推荐汇总

感兴趣的可以先收藏起来,还有大家在毕设选题,项目以及论文编写等相关问题都可以给我留言咨询,希望帮助更多的人 。

在这里插入图片描述

1、摘 要

随着气候变化的不断加剧,气象数据的准确性和时效性变得愈发重要python皮卡丘怎么编程。本论文介绍了一个基于Python网络爬虫技术的天气数据自动获取与可视化分析系统,该系统可以自动地从中国天气网获取实时天气数据,并将数据清洗、存储在MYSQL数据库中。同时,通过ECharts技术实现数据可视化,在大屏幕上实现了全国综合天气数据可视化,以及全国各城市和上海历史天气数据的可视化。其次,系统还实现了机器学习预测天气模型构建与训练,使用scikit-learn、pandas、numpy等工具实现多元线性回归模型。预测模型可以对天气趋势进行分析,提供预测结果。此外,该系统还实现了用户登录和注册功能,以及数据管理模块,用于管理用户数据、公告数据、全国天气数据和上海历史气象数据。
总的来说,本系统实现了数据的自动获取和处理,提供了可视化的天气数据分析和预测模型,并具有用户管理和数据管理功能。这个系统不仅具有很高的实用价值,同时也为未来的气象数据研究提供了一个有价值的数据源。

关键字:可视化;Python;网络爬虫;天气

2、项目框架

系统功能主要包括数据采集功能、数据可视化功能、数据预测功能、用户登录与注册功能、数据管理功能。其中数据采集功能包含全国实时天气数据采集和上海历史天气数据采集。数据可视化功能包含全国综合天气数据可视化、全国各城市天气数据可视化以及上海历史天气数据可视化。数据预测功能指的是气象分析预测;数据管理指的是多维度的数据管理,包含用户数据、公告数据、全国气象数据管理等。

在这里插入图片描述

数据预测模块功能实现
气象数据分析预测模块包括气象数据预测模型的训练以及利用现有气象数据,加载气象模型进行预测。
首先气象数据预测是根据各地区近12个月的上海的历史气象数据做为数据级,首先从数据库中导出CSV格式的数据,然后利用pandas和numpy技术对数据进行预处理、格式化数据以及数据集分割。分割完成后,试用sklearn库进行构建多元线性回归模型,再将分割后的数据进行投喂,训练模型。最终将模型保存并计算模型的EMS损失值用于参考模型的训练效果。

3、项目运行截图

(1)城市数据分析
在这里插入图片描述
(2)气象分析----数据概况
在这里插入图片描述

(3)气象分析2

(4)算法预测

在这里插入图片描述

(5)气象数据
在这里插入图片描述
(6)用户管理
在这里插入图片描述

(7)注册登录
在这里插入图片描述
(8)数据采集
在这里插入图片描述

3、部分代码

  1. import datetime
  2. from flask import Flask as _Flask, flash, redirect
  3. from flask import request, session
  4. from flask import render_template
  5. from flask.json import JSONEncoder as _JSONEncoder, jsonify
  6. import decimal
  7. import os
  8. from flask_apscheduler import APScheduler
  9. from service import user_service, current_weather_service, detail_weather_service, history_weather_service, \
  10. spider_service, city_service, notice_service, slog_service, data_service, predict_service
  11. from utils.JsonUtils import read_json
  12. import datetime
  13. from utils.Result import Result
  14. base = os.path.dirname(__file__)
  15. directory_path = os.path.dirname(__file__)
  16. json_path = directory_path + '/static/api/'
  17. class JSONEncoder(_JSONEncoder):
  18. def default(self, o):
  19. if isinstance(o, decimal.Decimal):
  20. return float(o)
  21. if isinstance(o, datetime.datetime):
  22. return o.strftime("%Y-%m-%d %H:%M:%S")
  23. if isinstance(o, datetime.date):
  24. return o.strftime("%Y-%m-%d")
  25. super(_JSONEncoder, self).default(o)
  26. class Flask(_Flask):
  27. json_encoder = JSONEncoder
  28. import os
  29. app = Flask(__name__)
  30. app.config['SESSION_TYPE'] = 'filesystem'
  31. app.config['SECRET_KEY'] = os.urandom(24)
  32. app.config['PERMANENT_SESSION_LIFETIME'] = datetime.timedelta(days=1)
  33. # ----------------------------------------------页面加载模块开始----------------------------------------------
  34. # 加载系统json文件
  35. @app.route('/api/<string:path>/')
  36. def api_json(path):
  37. if path == 'init.json' and session.get('user') and session.get('user')['type'] == 1:
  38. path = 'custom_init.json'
  39. return read_json(json_path + path)
  40. # 加载page下的静态页面
  41. @app.route('/page/<string:path>')
  42. def api_path(path):
  43. return render_template("page/" + path)
  44. # 系统默认路径后台跳转
  45. @app.route('/admin')
  46. def admin_page():
  47. if session.get('user') and session.get('user')['id'] > 0:
  48. return render_template("index.html")
  49. else:
  50. return redirect("/login")
  51. # 系统默认路径前台跳转
  52. @app.route('/')
  53. def main_page():
  54. return render_template("page/login.html")
  55. # 系统登录路径
  56. @app.route('/login')
  57. def login_page():
  58. return render_template("page/login.html")
  59. # 系统退出登录路径
  60. @app.route('/logout')
  61. def logout_page():
  62. session.clear()
  63. return redirect("/login")
  64. # 系统注册用户
  65. @app.route('/register', methods=['get'])
  66. def register_page():
  67. return render_template("page/register.html")
  68. # ----------------------------------------------页面加载模块结束----------------------------------------------
  69. # ----------------------------------------------用户相关模块开始----------------------------------------------
  70. # 用户注册
  71. @app.route('/register', methods=['post'])
  72. def register_user():
  73. form = request.form.to_dict() # 获取值
  74. result = user_service.insert_user(form)
  75. return result.get()
  76. # 用户登录
  77. @app.route('/login', methods=['post'])
  78. def login_user():
  79. form = request.form.to_dict() # 获取值
  80. result = user_service.select_user_by_account_password(form)
  81. session['user'] = result.data
  82. return result.get()
  83. # ----------------------------------------------用户相关模块结束----------------------------------------------
  84. # ----------------------------------------------全国气象相关模块开始----------------------------------------------
  85. # 全国气象数据分页
  86. @app.route('/page/current/weather/add', methods=['get'])
  87. def page_current_weather_add():
  88. city_list = current_weather_service.get_city_list()
  89. wd_list = current_weather_service.get_wd_list()
  90. weather_list = current_weather_service.get_weather_list()
  91. return render_template("page/currentWeather/add.html", city_list=city_list, weather_list=weather_list,
  92. wd_list=wd_list)
  93. # 添加全国气象数据
  94. @app.route('/add/current/weather', methods=['post'])
  95. def add_current_weather():
  96. form = request.form.to_dict()
  97. result = current_weather_service.insert_current_weather(form)
  98. return result.get()
  99. # 全国气象数据编辑页面
  100. @app.route('/page/current/weather/edit', methods=['get'])
  101. def page_current_weather_edit():
  102. id = request.args.get('id')
  103. current_weather = current_weather_service.get_current_weather(id)
  104. city_list = current_weather_service.get_city_list()
  105. wd_list = current_weather_service.get_wd_list()
  106. weather_list = current_weather_service.get_weather_list()
  107. return render_template("page/currentWeather/edit.html", city_list=city_list, weather_list=weather_list,
  108. wd_list=wd_list, current_weather=current_weather)
  109. # 编辑全国气象接口
  110. @app.route('/edit/current/weather', methods=['post'])
  111. def edit_current_weather():
  112. form = request.form.to_dict()
  113. result = current_weather_service.edit_current_weather(form)
  114. return result.get()
  115. # 单个删除全国气象接口
  116. @app.route('/del/current/weather/<int:id>', methods=['post'])
  117. def del_current_weather(id):
  118. result = current_weather_service.del_current_weather(id)
  119. return result.get()
  120. # 批量删除全国气象接口
  121. @app.route('/del/current/weather', methods=['post'])
  122. def del_current_weather_list():
  123. ids = request.args.get('ids')
  124. result = current_weather_service.del_current_weather_list(ids)
  125. return result.get()
  126. # 全国气象数据分页
  127. @app.route('/list/current/weather', methods=['get'])
  128. def current_weather_list():
  129. page = request.args.get('page')
  130. limit = request.args.get('limit')
  131. where = request.args.get('searchParams')
  132. result = current_weather_service.select_current_weather_list(page, limit, where)
  133. return result.get()
  134. # ----------------------------------------------全国气象相关模块结束----------------------------------------------
  135. # ----------------------------------------------上海气象相关模块开始----------------------------------------------
  136. # 上海气象数据分页
  137. @app.route('/page/detail/weather/add', methods=['get'])
  138. def page_detail_weather_add():
  139. city_list = detail_weather_service.get_city_list()
  140. wd_list = detail_weather_service.get_wd_list()
  141. weather_list = detail_weather_service.get_weather_list()
  142. return render_template("page/detailWeather/add.html", city_list=city_list, weather_list=weather_list,
  143. wd_list=wd_list)
  144. # 添加上海气象数据
  145. @app.route('/add/detail/weather', methods=['post'])
  146. def add_detail_weather():
  147. form = request.form.to_dict()
  148. result = detail_weather_service.insert_detail_weather(form)
  149. return result.get()
  150. # 上海气象数据编辑页面
  151. @app.route('/page/detail/weather/edit', methods=['get'])
  152. def page_detail_weather_edit():
  153. id = request.args.get('id')
  154. detail_weather = detail_weather_service.get_detail_weather(id)
  155. city_list = detail_weather_service.get_city_list()
  156. wd_list = detail_weather_service.get_wd_list()
  157. weather_list = detail_weather_service.get_weather_list()
  158. return render_template("page/detailWeather/edit.html", city_list=city_list, weather_list=weather_list,
  159. wd_list=wd_list, detail_weather=detail_weather)
  160. # 编辑上海气象接口
  161. @app.route('/edit/detail/weather', methods=['post'])
  162. def edit_detail_weather():
  163. form = request.form.to_dict()
  164. result = detail_weather_service.edit_detail_weather(form)
  165. return result.get()
  166. # 单个删除上海气象接口
  167. @app.route('/del/detail/weather/<int:id>', methods=['post'])
  168. def del_detail_weather(id):
  169. result = detail_weather_service.del_detail_weather(id)
  170. return result.get()
  171. # 批量删除上海气象接口
  172. @app.route('/del/detail/weather', methods=['post'])
  173. def del_detail_weather_list():
  174. ids = request.args.get('ids')
  175. result = detail_weather_service.del_detail_weather_list(ids)
  176. return result.get()
  177. # 上海气象数据分页
  178. @app.route('/list/detail/weather', methods=['get'])
  179. def detail_weather_list():
  180. page = request.args.get('page')
  181. limit = request.args.get('limit')
  182. where = request.args.get('searchParams')
  183. result = detail_weather_service.select_detail_weather_list(page, limit, where)
  184. return result.get()
  185. # ----------------------------------------------上海气象相关模块结束----------------------------------------------
  186. # ----------------------------------------------上海历史气象相关模块开始----------------------------------------------
  187. # 上海历史数据分页
  188. @app.route('/page/history/weather/add', methods=['get'])
  189. def page_history_weather_add():
  190. city_list = history_weather_service.get_city_list()
  191. wd_list = history_weather_service.get_wd_list()
  192. weather_list = history_weather_service.get_weather_list()
  193. return render_template("page/historyWeather/add.html", city_list=city_list, weather_list=weather_list,
  194. wd_list=wd_list)
  195. # 添加上海历史数据
  196. @app.route('/add/history/weather', methods=['post'])
  197. def add_history_weather():
  198. form = request.form.to_dict()
  199. result = history_weather_service.insert_history_weather(form)
  200. return result.get()
  201. # 上海历史编辑页面
  202. @app.route('/page/history/weather/edit', methods=['get'])
  203. def page_history_weather_edit():
  204. id = request.args.get('id')
  205. history_weather = history_weather_service.get_history_weather(id)
  206. city_list = history_weather_service.get_city_list()
  207. wd_list = history_weather_service.get_wd_list()
  208. weather_list = history_weather_service.get_weather_list()
  209. return render_template("page/historyWeather/edit.html", city_list=city_list, weather_list=weather_list,
  210. wd_list=wd_list, history_weather=history_weather)
  211. # 编辑上海历史接口
  212. @app.route('/edit/history/weather', methods=['post'])
  213. def edit_history_weather():
  214. form = request.form.to_dict()
  215. result = history_weather_service.edit_history_weather(form)
  216. return result.get()
  217. # 单个删除上海历史接口
  218. @app.route('/del/history/weather/<int:id>', methods=['post'])
  219. def del_history_weather(id):
  220. result = history_weather_service.del_history_weather(id)
  221. return result.get()
  222. # 批量删除上海历史接口
  223. @app.route('/del/history/weather', methods=['post'])
  224. def del_history_weather_list():
  225. ids = request.args.get('ids')
  226. result = history_weather_service.del_history_weather_list(ids)
  227. return result.get()
  228. # 上海历史气象数据分页
  229. @app.route('/list/history/weather', methods=['get'])
  230. def history_weather_list():
  231. page = request.args.get('page')
  232. limit = request.args.get('limit')
  233. where = request.args.get('searchParams')
  234. result = history_weather_service.select_history_weather_list(page, limit, where)
  235. return result.get()
  236. # ----------------------------------------------上海历史气象相关模块结束----------------------------------------------
  237. # ----------------------------------------------用户相关模块开始----------------------------------------------
  238. # 用户数据分页
  239. @app.route('/page/user/add', methods=['get'])
  240. def page_user_add():
  241. return render_template("page/user/add.html")
  242. @app.route('/add/user', methods=['post'])
  243. def add_user():
  244. form = request.form.to_dict()
  245. result = user_service.insert_user(form)
  246. return result.get()
  247. # 用户修改密码
  248. @app.route('/user/reset/password', methods=['post'])
  249. def reset_password_user():
  250. form = request.form.to_dict() # 获取值
  251. result = user_service.reset_password(form['old_password'], form['new_password'], form['again_password'])
  252. return result.get()
  253. # 用户编辑页面
  254. @app.route('/page/user/edit', methods=['get'])
  255. def page_user_edit():
  256. id = request.args.get('id')
  257. user = user_service.get_user(id)
  258. return render_template("page/user/edit.html", user=user)
  259. # 编辑用户接口
  260. @app.route('/edit/user', methods=['post'])
  261. def edit_user():
  262. form = request.form.to_dict()
  263. result = user_service.edit_user(form)
  264. return result.get()
  265. # 单个删除用户接口
  266. @app.route('/del/user/<int:id>', methods=['post'])
  267. def del_user(id):
  268. result = user_service.del_user(id)
  269. return result.get()
  270. # 批量删除用户接口
  271. @app.route('/del/user', methods=['post'])
  272. def del_user_list():
  273. ids = request.args.get('ids')
  274. result = user_service.del_user_list(ids)
  275. return result.get()
  276. # 用户数据分页
  277. @app.route('/list/user', methods=['get'])
  278. def user_list():
  279. page = request.args.get('page')
  280. limit = request.args.get('limit')
  281. where = request.args.get('searchParams')
  282. result = user_service.select_user_list(page, limit, where)
  283. return result.get()
  284. # ----------------------------------------------用户相关模块结束----------------------------------------------
  285. # ----------------------------------------------公告相关模块开始----------------------------------------------
  286. # 公告添加页面
  287. @app.route('/page/notice/add', methods=['get'])
  288. def page_notice_add():
  289. return render_template("page/notice/add.html")
  290. @app.route('/add/notice', methods=['post'])
  291. def add_notice():
  292. form = request.form.to_dict()
  293. result = notice_service.insert_notice(form)
  294. return result.get()
  295. # 数据公告编辑页面
  296. @app.route('/page/notice/edit', methods=['get'])
  297. def page_notice_edit():
  298. id = request.args.get('id')
  299. notice = notice_service.get_notice(id)
  300. return render_template("page/notice/edit.html", notice=notice)
  301. # 编辑公告接口
  302. @app.route('/edit/notice', methods=['post'])
  303. def edit_notice():
  304. form = request.form.to_dict()
  305. result = notice_service.edit_notice(form)
  306. return result.get()
  307. # 单个删除公告接口
  308. @app.route('/del/notice/<int:id>', methods=['post'])
  309. def del_notice(id):
  310. result = notice_service.del_notice(id)
  311. return result.get()
  312. # 批量删除公告接口
  313. @app.route('/del/notice', methods=['post'])
  314. def del_notice_list():
  315. ids = request.args.get('ids')
  316. result = notice_service.del_notice_list(ids)
  317. return result.get()
  318. # 公告数据分页
  319. @app.route('/list/notice', methods=['get'])
  320. def notice_list():
  321. page = request.args.get('page')
  322. limit = request.args.get('limit')
  323. where = request.args.get('searchParams')
  324. result = notice_service.select_notice_list(page, limit, where)
  325. return result.get()
  326. # 公告数据分页
  327. @app.route('/get/notice/new', methods=['get'])
  328. def get_new_notice():
  329. result = notice_service.get_notice_by_new()
  330. return result.get()
  331. # ----------------------------------------------公告相关模块结束----------------------------------------------
  332. # ----------------------------------------------日志相关模块开始----------------------------------------------
  333. # 单个删除日志接口
  334. @app.route('/del/slog/<int:id>', methods=['post'])
  335. def del_slog(id):
  336. result = slog_service.del_slog(id)
  337. return result.get()
  338. # 批量删除日志接口
  339. @app.route('/del/slog', methods=['post'])
  340. def del_slog_list():
  341. ids = request.args.get('ids')
  342. result = slog_service.del_slog_list(ids)
  343. return result.get()
  344. # 日志数据分页
  345. @app.route('/list/slog', methods=['get'])
  346. def slog_list():
  347. page = request.args.get('page')
  348. limit = request.args.get('limit')
  349. where = request.args.get('searchParams')
  350. result = slog_service.select_slog_list(page, limit, where)
  351. return result.get()
  352. # ----------------------------------------------日志相关模块结束----------------------------------------------
  353. # ----------------------------------------------分析相关模块开始----------------------------------------------
  354. # 上海城市数据分析
  355. @app.route('/data/history/weather', methods=['post', 'get'])
  356. def data_history_category():
  357. city = request.args.get('city')
  358. result_weather = data_service.weather_category_data(city)
  359. result_wd = data_service.wd_category_data(city)
  360. result_ws = data_service.ws_category_data(city)
  361. result_temp = data_service.temp_data(city)
  362. return {"weather_data": result_weather, "wd_data": result_wd, "ws_data": result_ws, "temp_data": result_temp}
  363. # 城市实时数据分析
  364. @app.route('/data/china/weather', methods=['post', 'get'])
  365. def data_china_category():
  366. city = request.args.get('city')
  367. model = current_weather_service.select_current_weather_by_city(city)
  368. result_data = data_service.current_change_data(city)
  369. return {"model": model, "result_data": result_data}
  370. # 城市实时数据分析
  371. @app.route('/data/home/weather', methods=['post', 'get'])
  372. def data_home_category():
  373. return data_service.top_page_data()
  374. # 城市实时数据分析
  375. @app.route('/data/weather/predict', methods=['post', 'get'])
  376. def data_predict():
  377. city = request.args.get('city')
  378. return predict_service.predict(city)
  379. # ----------------------------------------------分析相关模块结束----------------------------------------------
  380. # ----------------------------------------------爬虫相关模块开始----------------------------------------------
  381. from concurrent.futures import ThreadPoolExecutor
  382. # 爬虫自动运行
  383. def job_function():
  384. print("爬虫任务执行开始!")
  385. executor = ThreadPoolExecutor(2)
  386. executor.submit(spider_service.main_spider())
  387. def task():
  388. scheduler = APScheduler()
  389. scheduler.init_app(app)
  390. # 定时任务,每隔600s执行1次
  391. scheduler.add_job(func=job_function, trigger='interval', seconds=600, id='my_cloud_spider_id')
  392. scheduler.start()
  393. # 后台调用爬虫
  394. @app.route('/spider/start', methods=["POST"])
  395. def run_spider():
  396. executor = ThreadPoolExecutor(2)
  397. executor.submit(spider_service.main_spider())
  398. return '200'
  399. # 写在main里面,IIS不会运行
  400. task()
  401. # run_spider()#启动项目就运行一次爬虫
  402. # ----------------------------------------------爬虫相关模块结束----------------------------------------------
  403. if __name__ == '__main__':
  404. # 端口号设置
  405. app.run(host="127.0.0.1", port=5000)

4、总结

天气数据自动获取与可视化分析系统是一个功能完备、性能稳定、安全可靠且具有良好兼容性的系统。通过该系统,用户能够实时获取国内各地区的天气数据,并进行数据分析和可视化展示,从而为用户的决策和实践活动提供有力支持。在系统的设计和开发过程中,我们遵循了模块化设计、分层设计、内聚低耦合、可靠性和统一性等设计原则,以确保系统的可重用性、可维护性和易扩展性。
系统经过多次测试,得出了积极的测试结果。系统展现了稳定的性能,在正常负载下能够快速响应用户请求并处理大量数据。同时,系统保障了用户数据的安全和隐私,并且在不同浏览器和操作系统上都能够正常运行。
从经济可行性分析角度看,该系统能够提高天气数据的获取效率和分析准确性,帮助用户做出更好的决策,具有一定的商业价值和市场前景。

源码获取:

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/362861
推荐阅读
相关标签