我正在为我的垃圾收集公司开发路线追踪/优化软件,并希望得到一些关于我当前数据结构/情况的反馈。
这是我的MongoDB结构的简化版本:
数据库: 数据
类别:
“顾客” - 包含所有客户数据的数据收集。
[
{
"cust_id": "1001",
"name": "Customer 1",
"address": "123 Fake St",
"city": "Boston"
},
{
"cust_id": "1002",
"name": "Customer 2",
"address": "123 Real St",
"city": "Boston"
},
{
"cust_id": "1003",
"name": "Customer 3",
"address": "12 Elm St",
"city": "Boston"
},
{
"cust_id": "1004",
"name": "Customer 4",
"address": "16 Union St",
"city": "Boston"
},
{
"cust_id": "1005",
"name": "Customer 5",
"address": "13 Massachusetts Ave",
"city": "Boston"
}, { ... }, { ... }, ...
]
“卡车” - 包含所有卡车数据的数据收集。
[
{
"truckid": "21",
"type": "Refuse",
"year": "2011",
"make": "Mack",
"model": "TerraPro Cabover",
"body": "Mcneilus Rear Loader XC",
"capacity": "25 cubic yards"
},
{
"truckid": "22",
"type": "Refuse",
"year": "2009",
"make": "Mack",
"model": "TerraPro Cabover",
"body": "Mcneilus Rear Loader XC",
"capacity": "25 cubic yards"
},
{
"truckid": "12",
"type": "Dump",
"year": "2006",
"make": "Chevrolet",
"model": "C3500 HD",
"body": "Rugby Hydraulic Dump",
"capacity": "15 cubic yards"
}
]
“司机” - 包含所有驱动程序数据的数据收集
[
{
"driverid": "1234",
"name": "John Doe"
},
{
"driverid": "4321",
"name": "Jack Smith"
},
{
"driverid": "3421",
"name": "Don Johnson"
}
]
“路由表” - 包含所有预定路线列表的数据收集。
[
{
"route_name": "monday_1",
"day": "monday",
"truck": "21",
"stops": [
{
"cust_id": "1001"
},
{
"cust_id": "1010"
},
{
"cust_id": "1002"
}
]
},
{
"route_name": "friday_1",
"day": "friday",
"truck": "12",
"stops": [
{
"cust_id": "1003"
},
{
"cust_id": "1004"
},
{
"cust_id": "1012"
}
]
}
]
“路线” - 包含所有活动和已完成路径的数据的数据集合。
[
{
"routeid": "1",
"route_name": "monday1",
"start_time": "04:31 AM",
"status": "active",
"stops": [
{
"customerid": "1001",
"status": "complete",
"start_time": "04:45 AM",
"finish_time": "04:48 AM",
"elapsed_time": "3"
},
{
"customerid": "1010",
"status": "complete",
"start_time": "04:50 AM",
"finish_time": "04:52 AM",
"elapsed_time": "2"
},
{
"customerid": "1002",
"status": "incomplete",
"start_time": "",
"finish_time": "",
"elapsed_time": ""
},
{
"customerid": "1005",
"status": "incomplete",
"start_time": "",
"finish_time": "",
"elapsed_time": ""
}
]
}
]
这是迄今为止的过程:
每天司机都以“开始新路线”开始。在开始新路由之前,驱动程序必须先输入数据:
- driverid
- 日期
- 卡车
正确输入所有数据后,将开始启动新路线:
- 在集合中创建新对象 “路线”
- 查询集合 “路由列表“为了 “天” + “卡车” 匹配并返回 “停止”
- 插 “路由表” 数据进入 “路线” 采集
当司机继续他的每日停止/任务时 “路线” 集合将相应更新。
完成所有任务后,驱动程序将能够通过简单地将“状态”字段从“路径”集合中的“完成”更改为“活动”来完成路径处理。
这总结了一下。任何反馈,意见,评论,链接,优化策略都非常感谢。
在此先感谢您的时间。