Reputation: 321
I'm writing an app that closely tracks a user's driving speed. I'm currently using the HERE API getlinkinfo
to get the speed limit of a road at a particular point using lat/long.
When the user is in an intersection or is on/under an overpass the lat/long doesn't specify which road the user is currently on so I don't always get the correct speed limit returned. I believe tiles of data can be read with the Platform Data Extension API but I'm using a plan with only the Standard Feature set so that API is not available. Is there a way to get all of the speed limits of roads within a certain radius of a point or within a 2 dimensional square using the Standard Feature set?
Upvotes: 3
Views: 3062
Reputation: 597
getlinkinfo
will depreciated March 31, 2017. In order to get speed limit information you will have to use PDE (Platform Data Extension) which requires an APP ID and Code. If you are working in PHP you can use the link below to help get you started.
Upvotes: 1