Get Distance per Country with Graphhopper

2019-09-02 05:24发布

We have a running Graphhopper Server in our company for getting routes.

Is there a way to find out how far we are driving in each country? e.g if I'm driving from Munich to Vienna I would like to know how many km we are driving in Germany and how many in Austria.

2条回答
时光不老,我们不散
2楼-- · 2019-09-02 06:19

This is not yet possible out of the box. You'll have to create a feature request for this or implement this on your own: grab the country boundaries, identify the edges/nodes to mark in the graph and then create additional instructions or store the point indices to later calculate the distances/times for every path.

查看更多
神经病院院长
3楼-- · 2019-09-02 06:22

We now have built our own solution which displays us the distance per country and also separates which road types are used.

commercial_info: {
    DE: {
        distance: 461221.4580000006,
        distance_per_highway: {
            trunk: "801.1859999999999",
            motorway_link: "6521.838000000001",
            motorway: "447824.3810000005",
            primary: "5922.418000000001"
        }
    },
    RS: {
        distance: 491452.9660000001,
        distance_per_highway: {
            secondary: "17662.566",
            unclassified: "4864.14",
            primary_link: "273.186",
            service: "398.826",
            motorway_link: "727.6659999999999",
            motorway: "445850.3279999998",
            primary: "21407.297000000002"
        }
    },
    default: {
        distance: 79.43371162874004,
        distance_per_highway: {
            nan: "39.71685581437002"
        }
    }
}
查看更多
登录 后发表回答