Graphhopper 服务器 - 创建和使用自定义车辆类型

Graphhopper Server - Create and use a custom vehicle type

在浏览 https://github.com/graphhopper/directions-api/blob/master/docs-routing.md 时,我发现了选择预设车辆类型汽车、步行和自行车之一的选项。但不幸的是,我必须根据最高速度(比汽车慢但比自行车快)的车辆来计算持续时间,这些车辆也不允许在州际公路上行驶。

实现这样的效果的最佳方法是什么?

您可以使用现有的标准配置文件(例如汽车)并降低速度配置文件并调整允许的高速公路标签。例如。查看 CarFlagEncoder. Another (currently more complex) solution is to write a custom FlagEncoder from scratch.