简体   繁体   English

高速公路限速

[英]speed limits on highway

I would like to do a project on speed limits on highways in germany.我想做一个关于德国高速公路限速的项目。 I want to know the distance between changes of the speed limit.我想知道限速变化之间的距离。 To do this I need get a dataset which includes the speed limit traffic signs or the areas where a speed limit is set along ONE highway.为此,我需要获取一个数据集,其中包括限速交通标志或沿一条高速公路设置限速的区域。 I havent worked with here yet.我还没有在这里工作过。 And before I dig into the details I would like to know if here is the right tool to do this project.在我深入研究细节之前,我想知道这是否是完成这个项目的正确工具。 And of course it would be nice if you could also tell me briefly how to do it, since I dont't even know where to start in here:)当然,如果你也能简单地告诉我如何去做,那就太好了,因为我什至不知道从哪里开始:)

Thanks a lot!多谢!

I tried Openstreetmaps before, but the data is too outdated.我之前试过 Openstreetmaps,但是数据太过时了。 For example you cannot see speed limits due to construction works.例如,由于建筑工程,您看不到速度限制。

I found this link on other posts https://github.com/seaBass3/here-pde-speed-limit but it seems not valid any more我在其他帖子https://github.com/seaBass3/here-pde-speed-limit上找到了这个链接,但它似乎不再有效

This can be solved by different approaches, but one the most feasible, is the following:这可以通过不同的方法解决,但最可行的方法如下:

By using the tool HereTraffic API v7 you can get real-time traffic flow and information about traffic signs, by using query parameters, response structures, and data types.通过使用工具 HereTraffic API v7,您可以使用查询参数、响应结构和数据类型获取实时交通流量和有关交通标志的信息。

You can get all the information required on real-time traffic flow data in JSON, including information on speed and jam factor for the region(s) defined in each request.您可以在 JSON 中获取所有所需的实时交通流量数据信息,包括每个请求中定义的区域的速度和拥堵系数信息。 Can also deliver additional data such as the geometry of the road segments in relation to the flow.还可以提供其他数据,例如与流量相关的路段几何形状。

Provides aggregated information about traffic incidents in JSON, including the type and location of each traffic incident, status, start and end time, and other relevant data. JSON 提供交通事故的汇总信息,包括每次交通事故的类型、地点、状态、起止时间等相关数据。 This data is useful to dynamically optimize route calculations.此数据可用于动态优化路线计算。

And if you need historical information also like from past dates you can always use Here Probe Data to get the data which can be compared with different datasets.如果您还需要过去日期的历史信息,您始终可以使用 Here Probe Data 来获取可以与不同数据集进行比较的数据。

This is one of the examples you can use in order to get all the information you need:这是您可以用来获取所需所有信息的示例之一:

curl -H "Authorization: Bearer $TOKEN" "https://data.traffic.hereapi.com/v7/flow?locationReferencing=shape&in=bbox:13.400,52.500,13.405,52.505" curl -H “授权:Bearer $TOKEN” “https://data.traffic.hereapi.com/v7/flow?locationReferencing=shape&in=bbox:13.400,52.500,13.405,52.505”

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM