4

We are developing an application, that needs to find the speed around a specific location... We were planning to use OverPass API to first the speed and tried to follow the article mentioned below.

Overpass api to find the speed limit for a co-ordinate?

The syntax of the around method is shown below.

http://www.overpass-api.de/api/xapi?*[maxspeed=*][around=2500,8.5580957,76.880541]

But we are not getting any results... Can anyone guide us if the syntax is correct?

Community
  • 1
  • 1
Sabarish Sathasivan
  • 1,196
  • 2
  • 19
  • 42
  • 1
    crosspost: https://help.openstreetmap.org/questions/47571/overpass-api-speedlimit-around-a-co-ordinates – scai Jan 19 '16 at 08:53

1 Answers1

4

The failure reason: around is not a supported predicate in XAPI (please, see the original manual, https://wiki.openstreetmap.org/wiki/Xapi). So you cannot use it in your queries.

Solution 1: You can replace around with supported bbox. For example, the query below works properly.

http://www.overpass-api.de/api/xapi?*[bbox=-0.489,51.28,-0.436,51.36][maxspeed=*]

You will receive ~300kB of data

Solution 2: If you still want around, please use Overpass QL/XML:

As for me, Overpass XML looks like more readable. Also XML is preferred because XSLT can transform it to any other regular format.

aka_test
  • 27
  • 5
Piotr Semenov
  • 1,761
  • 16
  • 24