├── README.md ├── shixun2_web ├── .idea │ ├── misc.xml │ ├── modules.xml │ ├── python_web.iml │ └── workspace.xml ├── app.py ├── controller │ ├── __pycache__ │ │ ├── index.cpython-36.pyc │ │ └── updata.cpython-36.pyc │ ├── index.py │ └── updata.py ├── server │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-36.pyc │ │ └── info.cpython-36.pyc │ └── info.py ├── static │ ├── css │ │ └── bootstrap.css │ ├── img │ │ ├── back.jpg │ │ ├── back.png │ │ ├── back3.png │ │ ├── back4.png │ │ ├── back5.png │ │ ├── back6.png │ │ ├── fengji.png │ │ └── fengji2.png │ └── js │ │ ├── bootstrap.min.js │ │ ├── dy_power_plt.js │ │ ├── echarts.min.js │ │ ├── jquery.min.js │ │ ├── page2_info.js │ │ ├── power.js │ │ ├── power_plt.js │ │ ├── updata_info.js │ │ └── updata_page_info.js └── template │ ├── duifeng.html │ ├── index_page.html │ ├── power.html │ ├── test.html │ └── zhendong.html ├── shixun_info.sql ├── 原始数据.txt └── 数据处理代码 ├── 发电功率.ipynb ├── 发电量.ipynb ├── 对风不准.ipynb └── 神经网络2.ipynb /README.md: -------------------------------------------------------------------------------- 1 | # WindPowerDataProcessing 2 | 风力发电非常环保,且风能蕴量巨大,因此日益受到世界各国的重视。但是对于实际采集 到的测风数据及功率数据都存在各种各样的问题,需要有准确的实测数据来分析风电特征及发电规律 而且从风场收集到的数据中通常包含异常数据点,造成计算机进行数据筛选和排序的速度比较慢,因此 需要可靠有效的风电数据处理方法来筛选合理有效的数据以进行风电功率预测建模。 3 | 4 | 5 | 文件说明: 6 | 7 | 文件(shixun2_web) 为python web项目,进行数据可视化;文件(数据处理代码) 为原始数据的处理代码;文件(shixun_info.sql)为已清洗好的数据 8 | 9 | 运行环境: 10 | 数据清洗环境: python 3.7 + pandas 0.24.1 + jupyter 1.0.0 + notebook 5.7.4 + pymysql 0.9.3;开发工具eclipse 11 | 12 | python web 项目运行环境:python 3.7 + tornado 6.0.2 ;开发工具pycharm 13 | 14 | 15 | 运行流程: 16 | 进入app.py 文件 启动main 方法 ,浏览器访问地址 http://localhost:8088/index_page 17 | 18 | 19 | -------------------------------------------------------------------------------- /shixun2_web/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /shixun2_web/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /shixun2_web/.idea/python_web.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 11 | -------------------------------------------------------------------------------- /shixun2_web/.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 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 | 74 | 75 | 76 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 |