• 大数据毕设 - 公交数据分析与可视化系统(大数据 python flask)


    0 前言

    🔥 Hi,大家好,这里是丹成学长的毕设系列文章!

    🔥 对毕设有任何疑问都可以问学长哦!

    这两年开始,各个学校对毕设的要求越来越高,难度也越来越大… 毕业设计耗费时间,耗费精力,甚至有些题目即使是专业的老师或者硕士生也需要很长时间,所以一旦发现问题,一定要提前准备,避免到后面措手不及,草草了事。

    为了大家能够顺利以及最少的精力通过毕设,学长分享优质毕业设计项目,今天要分享的新项目是

    🚩 基于大数据的公交数据分析与可视化系统

    🥇学长这里给一个题目综合评分(每项满分5分)

    • 难度系数:4分
    • 工作量:4分
    • 创新点:3分

    🧿 选题指导, 项目分享:

    https://gitee.com/yaa-dc/BJH/blob/master/gg/cc/README.md

    1 课题背景

    本项目采用B/S架构,利用前后端分离的方法来实现Web开发。同时采用加密的方法对数据进行脱敏,利用python对大数据处理的优势对数据进行整合和清洗,方便可视化时的数据拿取,利用Vue前端框架结合ECharts可视化组件进行前端可视化开发。我们从车辆正晚点、车辆运营情况、线路交通状况、站点客流、线路客流、车辆的满载率、OD客流分析这7个维度来分析公交数据。总体来说是利用某城市特殊的公交数据做出一套针对某城市的公交状况可视化分析系统。为解决某城市公共交通人员出行、道路拥堵、时刻表安排等问题的解决提供技术支持

    2 具体实现

    前端UI设计

    在这里插入图片描述

    行车正晚点

    在这里插入图片描述

    线路运营

    在这里插入图片描述

    站点运营

    在这里插入图片描述

    线路客流

    在这里插入图片描述

    站点客流

    在这里插入图片描述

    OD客流

    在这里插入图片描述

    3 Flask框架

    简介

    Flask是一个基于Werkzeug和Jinja2的轻量级Web应用程序框架。与其他同类型框架相比,Flask的灵活性、轻便性和安全性更高,而且容易上手,它可以与MVC模式很好地结合进行开发。Flask也有强大的定制性,开发者可以依据实际需要增加相应的功能,在实现丰富的功能和扩展的同时能够保证核心功能的简单。Flask丰富的插件库能够让用户实现网站定制的个性化,从而开发出功能强大的网站。

    本项目在Flask开发后端时,前端请求会遇到跨域的问题,解决该问题有修改数据类型为jsonp,采用GET方法,或者在Flask端加上响应头等方式,在此使用安装Flask-CORS库的方式解决跨域问题。此外需要安装请求库axios。

    Flask框架图

    在这里插入图片描述

    相关代码:

    import sqlalchemy
    from flask import Flask, request, render_template,flash
    import pymysql
    from datetime import datetime
    from flask_sqlalchemy import SQLAlchemy
    from flask import jsonify
    import json
    import toolfun
    
    app = Flask(__name__)
    
    db = pymysql.connect("localhost", "root", "renshuaichen", "firstdatabase")
    cursor = db.cursor()
    app.secret_key='aaa'
    
    # app.config['SQLALCHEMY_DATABASE_URI'] = 'mysql://root:renshuaichen@127.0.0.1/firstdatabase'
    # app.config['SQLALCHEMY_TRACK_MODIFICATIONS ']=False
    # db1=SQLAlchemy(app)
    
    
    # @app.route('/')
    # def get_data():
    #     db = pymysql.connect("localhost", "root", "renshuaichen", "firstdatabase")
    #     cursor=db.cursor()
    #     sql="select * from 1table"
    #     print(cursor.execute(sql))
    # @app.route('/getdata')
    # def get_data():
    #     sql = "select * from 趟次201811"
    #     cursor.execute(sql)
    #     data = cursor.fetchall()
    #     jsonify(data)
    
    #------------------------------------------第一次的测试----------------------------
    # @app.route('/',methods=['GET','POST'])
    # def update_page():
    #     err="请填写条件"
    #     data="数据为空"
    #     bustime_p = []
    #     bustime_f = []
    #     turn=[]
    #     if request.method=='POST':
    #         input1 = request.form.get('input1')
    #         input2 = request.form.get('input2')
    #         if not all([input1,input2]):
    #             err='消息不完整'
    #         elif input1=='2'and input2=='1':
    #             sql = "select * from 到离站201812 where 趟次ID='149959264' and 线路ID='2576' and 线路名称='34路' and 进出站='2'"
    #             cursor.execute(sql)
    #             data=cursor.fetchall()
    #             time_a,sta_a=toolfun.by_time(data)
    #             print(time_a)
    #             return render_template("index.html",time_a=json.dumps(time_a),sta_a=json.dumps(sta_a))
    #         else:
    #             err=""
    #             sql = "select 排班时间 from 行车计划201812 where 线路名称='81路' and 排班时间 like '2018-12-02%'"
    #             cursor.execute(sql)
    #             data=cursor.fetchall()
    #             bustime_p=toolfun.get_time_plan(data)
    #             turn=toolfun.turn(data)
    #             print(data)
    #             sql="select 运营日期 from 趟次201812 where 线路名称='81路' and 运营日期 like '2018/12/2 %'"
    #             cursor.execute(sql)
    #             data = cursor.fetchall()
    #             print(data)
    #             bustime_f=toolfun.get_time(data)
    #             print(bustime_f)
    #             # return render_template('index.html',err=json.dumps(err),bustime_f=json.dumps(bustime_f),bustime_p=json.dumps(bustime_p),turn=json.dumps(turn))
    #     # return render_template('index.html')
    #     # sql = "select * from 趟次201811"
    #     # cursor.execute(sql)
    #     # data = cursor.fetchall()
    #     # jsonify(data)
    #     return render_template('on-schedule.html', err=json.dumps(err), bustime_f=json.dumps(bustime_f),
    #                            bustime_p=json.dumps(bustime_p), turn=json.dumps(turn))
    #     # return render_template('index.html', err=json.dumps(err))
    #---------------------------------------------------------------------------------------------
    
    #----------------------------测试2-----------------------------------------
    @app.route('/',methods=['GET','POST'])
    def update_page():
        err="请填写条件"
        data="数据为空"
        bustime_p = []
        bustime_f = []
        turn=[]
        if request.method=='POST':
            select1 = request.values.get('s1')
            select2 = request.values.get('s2')
            if select1=='0000-00-00' and select2=='0000-00-00':
                err='消息不完整'
            else:
                err=""
                sql = "select 排班时间 from 行车计划201812 where 线路名称='"+select1+"' and 排班时间 like '"+select2+"%'"
                cursor.execute(sql)
                data=cursor.fetchall()
                bustime_p=toolfun.get_time_plan(data)
                turn=toolfun.turn(data)
                print(data)
                sql="select 运营日期 from 趟次201812 where 线路名称='"+select1+"' and 运营日期 like '"+toolfun.change_data_from(select2)+" %'"
                cursor.execute(sql)
                data = cursor.fetchall()
                print(data)
                bustime_f=toolfun.get_time(data)
                print(bustime_f)
                # return render_template('index.html',err=json.dumps(err),bustime_f=json.dumps(bustime_f),bustime_p=json.dumps(bustime_p),turn=json.dumps(turn))
        # return render_template('index.html')
        # sql = "select * from 趟次201811"
        # cursor.execute(sql)
        # data = cursor.fetchall()
        # jsonify(data)
        return render_template('on-schedule.html', err=json.dumps(err), bustime_f=json.dumps(bustime_f),
                               bustime_p=json.dumps(bustime_p), turn=json.dumps(turn))
        # return render_template('index.html', err=json.dumps(err))
    #----------------------------------------------------------------------------
    
    
    
    
    # @app.route('/',methods=['GET','POST'])
    # def update_page():
    #     err="请填写条件"
    #     data="数据为空"
    #     bustime_p = []
    #     bustime_f = []
    #     turn=[]
    #     print('1')
    #     if request.method=='POST':
    #         select1 = request.values.get('s1')
    #         select2 = request.values.get('s2')
    #         print(select1)
    #         print(select2)
    #         if select1=='0000-00-00' and select2=='0000-00-00':
    #             err='消息不完整'
    #         else:
    #             err=""
    #             sql = "select 排班时间 from 行车计划201812 where 线路名称='"+str(select2)+"' and 排班时间 like '"+str(select1)+"%'"
    #             cursor.execute(sql)
    #             data=cursor.fetchall()
    #             bustime_p=toolfun.get_time_plan(data)
    #             turn=toolfun.turn(data)
    #             print(data)
    #             sql="select 运营日期 from 趟次201812 where 线路名称='"+str(select1)+"' and 运营日期 like '2018/12/2 %'"
    #             cursor.execute(sql)
    #             data = cursor.fetchall()
    #             print(data)
    #             bustime_f=toolfun.get_time(data)
    #             print(bustime_f)
    #     return render_template('on-schedule.html',err=json.dumps(err), bustime_f=json.dumps(bustime_f),bustime_p=json.dumps(bustime_p), turn=json.dumps(turn))
    
    
    @app.route('/t_point',methods=['GET','POST'])
    def t_point():
        err="请填写条件"
        data="数据为空"
        time_a_1 = []
        time_a_2 = []
        time_a_3 = []
        sta_a = []
        turn=[]
        if request.method=='POST':
            select1 = request.values.get('s1')
            select2 = request.values.get('s2')
            if select1 == '0000-00-00' and select2 == '0000-00-00':
                err='消息不完整'
            else:
    
                sql = "select 始发站名称 from 行车计划201812 where 线路名称='"+select1+"'"
                cursor.execute(sql)
                f_stop = cursor.fetchone()
                print(f_stop[0])
                sql="select 趟次ID from 到离站201812 where 线路名称='"+select1+"'and 到站时间 like '"+toolfun.change_data_from(select2)+" 7:0%' and 进出站='2' and 站点名称='"+f_stop[0]+"'"
                # sql = "select * from 到离站201812 where 趟次ID='149959264' and 线路ID='2576' and 线路名称='34路' and 进出站='2'"
                cursor.execute(sql)
                trip_1=cursor.fetchone()
                print(trip_1[0])
                # sql="select 趟次ID from 到离站201812 where 线路名称='"+select1+"'and 到站时间 like '"+toolfun.change_data_from(select2)+" 12:0%' and 进出站='2' and 站点名称='"+f_stop[0]+"'"
                # cursor.execute(sql)
                # trip_2 = cursor.fetchone()
                #
                # sql = "select 趟次ID from 到离站201812 where 线路名称='" + select1 + "'and 到站时间 like '" + toolfun.change_data_from(select2) + " 18:0%' and 进出站='2' and 站点名称='" +f_stop[0] + "'"
                # cursor.execute(sql)
                # trip_3 = cursor.fetchone()
                sql = "select * from 到离站201812 where 趟次ID='"+trip_1[0]+"' and 进出站='2'"
                cursor.execute(sql)
                data_1 = cursor.fetchall()
                time_a_1,sta_a = toolfun.by_time(data_1)
                # sql = "select * from 到离站201812 where 趟次ID='"+trip_2[0]+"'"
                # cursor.execute(sql)
                # data_2 = cursor.fetchone()
                # time_a_2,sta_a = toolfun.by_time(data_2)
                # sql = "select * from 到离站201812 where 趟次ID='"+trip_3[0]+"'"
                # cursor.execute(sql)
                # data_3 = cursor.fetchone()
                # time_a_3,sta_a = toolfun.by_time(data_3)
        return render_template("t_point.html", time_a_1=json.dumps(time_a_1), sta_a=json.dumps(sta_a), time_a_2=json.dumps(time_a_2), time_a_3=json.dumps(time_a_3))
        # return render_template('t_point.html', err=json.dumps(err), bustime_f=json.dumps(bustime_f),
        #                        bustime_p=json.dumps(bustime_p), turn=json.dumps(turn))
        # return render_template('index.html', err=json.dumps(err))
    
    
    
    
    
    
    @app.route('/page_one',methods=['GET','POST'])
    def page_one():
        return render_template('站点客流.html')
    
    @app.route('/page_two',methods=['GET','POST'])
    def page_two():
        num,name=toolfun.sta_co_data()
        return render_template('客流柱状图.html',num=json.dumps(num),name=json.dumps(name))
    
    if __name__ == '__main__':
         app.run()
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216

    4 ECharts可视化工具

    ECharts(Enterprise Charts)是百度开源的数据可视化工具,底层依赖轻量级Canvas库ZRender。兼容了几乎全部常用浏览器的特点,使它可广泛用于PC客户端和手机客户端。ECharts能辅助开发者整合用户数据,创新性的完成个性化设置可视化图表。支持折线图(区域图)、柱状图(条状图)、散点图(气泡图)、K线图、饼图(环形图)等,通过导入 js 库在 Java Web 项目上运行。

    5 最后

  • 相关阅读:
    c语言基础知识点(一)C语言中的指针运算和数组名的特性
    Spring application.properties
    图形像素的逻辑操作&通道分离与合并&图像色彩空间转换
    【机器学习】李宏毅——生成式对抗网络GAN
    使用electron将vue项目打包成exe桌面应用
    Xcode 真机调试之Unable to install “xxx“,Code: -402653103
    HTML静态网页作业——关于我的家乡介绍安庆景点
    React 与 TS 结合使用时的技巧总结
    树莓派4b编译FFmpeg支持硬件编解码
    数制与逻辑代数
  • 原文地址:https://blog.csdn.net/caxiou/article/details/127978323