资源简介
1) 乘客查询模块
a) 线路查询
能够查询各个线路的信息。如,17路的信息。(如起点、终点,行经站点。。。)
b) 站点信息查询
能够查询各个站点的信息。如,烟台大学站点的信息。(如,地理位置,过路车辆,始发车辆)
c) 站站查询
从站点A到站点B的路线
d) 乘车最优路线选择
从地点A到地点B的乘车最优路线
2) 管理人员模块
a) 线路管理
对所有线路能够进行增删改查询排序的管理
b) 站点管理
对所有站点能够进行增删改查询排序的管理
c) 车辆管理
对所有车辆能够进行增删改查询排序的管理
d) 车辆发车表
每个线路一天的车辆发车表。如:5:00 鲁F12345,5:20:鲁F2345.。。
e) 车辆动态图表
某一瞬间,全体车辆所在的位置,如,上午10:00 鲁F123435 烟大北门,鲁F2345 文经学院
3) 统计模块
a) 站点乘客分布
一个站点乘坐某线路车的人数总和
一个站点乘坐车的人数总和
b) 线路乘客分布
一趟的车载人数总和。如17路上午10:00发车的载人数
一天的一个线路的载人数总和。如17路一天的载人总和
整个公交系统的载人总和。
c) 车辆聚集度
一个站点所经车辆的数目
代码片段和文件信息
#include “BusInfo.h“
void BusInfo::setBusNumber(int BusNumber)
{
this->BusNumber = BusNumber;
}
void BusInfo::setBusRout(int BusRout)
{
this->BusRout = BusRout;
}
void BusInfo::setBusUserName(char *BusUserName)
{
this->BusUserName = BusUserName;
}
void BusInfo::setTrain_number(int Train_number)
{
this->Train_number = Train_number;
}
int BusInfo::getBusNumber()
{
return this->BusNumber;
}
char* BusInfo::getBusUserName()
{
return this->BusUserName;
}
int BusInfo::getBusRout()
{
return this->BusRout;
}
int BusInfo::getTrain_number()
{
return this->Train_number;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 608 2013-05-23 17:43 BusSystem\BusInfo.cpp
文件 409 2013-06-10 15:07 BusSystem\BusInfo.h
文件 1840 2013-06-01 11:28 BusSystem\BusManage.cpp
文件 451 2013-06-10 15:07 BusSystem\BusManager.h
文件 6081 2013-06-10 16:51 BusSystem\BusSystem.dsp
文件 526 2013-05-23 16:40 BusSystem\BusSystem.dsw
文件 156672 2013-06-17 20:31 BusSystem\BusSystem.ncb
文件 60928 2013-06-17 20:31 BusSystem\BusSystem.opt
文件 252 2013-06-17 17:14 BusSystem\BusSystem.plg
文件 5763 2013-06-10 15:12 BusSystem\Debug\BusInfo.obj
文件 11831 2013-06-13 14:42 BusSystem\Debug\BusManage.obj
文件 319549 2013-06-17 17:13 BusSystem\Debug\BusSystem.exe
文件 453492 2013-06-17 17:13 BusSystem\Debug\BusSystem.ilk
文件 43520 2013-06-03 23:19 BusSystem\Debug\BusSystem.opt
文件 186956 2013-05-28 19:25 BusSystem\Debug\BusSystem.pch
文件 1377280 2013-06-17 16:53 BusSystem\Debug\BusSystem.pdb
文件 10715 2013-05-28 11:00 BusSystem\Debug\li
文件 1258 2013-05-28 21:00 BusSystem\Debug\Manager.obj
文件 67375 2013-06-17 17:10 BusSystem\Debug\Passenger.obj
文件 9754 2013-06-17 16:17 BusSystem\Debug\PeopleCount.obj
文件 3612 2013-06-16 15:10 BusSystem\Debug\RoutInfo.obj
文件 14106 2013-06-16 15:10 BusSystem\Debug\RoutManage.obj
文件 6840 2013-06-10 15:12 BusSystem\Debug\RoutPeoCount.obj
文件 16442 2013-06-03 23:19 BusSystem\Debug\RoutService.obj
文件 11731 2013-06-17 16:17 BusSystem\Debug\StartTable.obj
文件 9804 2013-06-13 14:42 BusSystem\Debug\StopInfo.obj
文件 25618 2013-06-16 15:10 BusSystem\Debug\StopManage.obj
文件 6895 2013-06-10 15:12 BusSystem\Debug\StopPeoCount.obj
文件 94083 2013-06-17 16:29 BusSystem\Debug\Test.obj
文件 15383 2013-06-16 14:58 BusSystem\Debug\TrainInfo.obj
............此处省略33个文件信息
- 上一篇:交巡警服务平台的设置与调度
- 下一篇:晶振电路仿真(ALTIUM DESIGNER)
评论
共有 条评论