Question

I am having problem in passing longitude and latitude format of Pakistan in Twitter Streaming API. This API provides some sample examples of passing longitude and latitude of some cities. The location for San Fransisco in the API location example is given below and it works very well in my program.

-122.75,36.8,-121.75,37.8

But I am trying to use the following location to get tweets from Pakistan but the server rejects this location.

71.69,32.01,70.69,33.01

Kindly help me which 4 values separated by commas I should pass that will allow me to get tweets from Pakistan.

Was it helpful?

Solution

Each bounding box should be specified as a pair of longitude and latitude pairs, with the southwest corner of the bounding box coming first.

Your co-ordinates of 71.69,32.01,70.69,33.01 give this (which only seems to be a small part of Pakistan, might want to have a larger box):

enter image description here

So I think you box isn't being formed correctly because you're not giving the bottom left (South West) corner of it first. In order to give the box co-ordinates correctly you need to have them in the format bottom-left-longitude, bottom-left-latitude, top-right-longitude, top-right-latitude.

Try using 70.7,32.1,71.7,33.1 (I've rounded the figures) instead which will give you the same area you suggested originally:

enter image description here

In order to get the whole of Pakistan try using: 62.9,25.2,73.3,35.2 which give you the area:

enter image description here

I use this website in order to get the latitude/longitude values. Note that the website gives you latitude, longitude but Twitter wants longitude, latitude. Remember to swap them around!

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top