1-) I chose a point in Manhattan, set the radius to 10 km and the time interval to 1 week. SearchTweets() returns 600 tweets. Then I chose the same location, but this time I set the radius to 1km and time interval to just one day(one of the days from the previous chosen week), it now returns more than 1000 tweets.
So I conclude that the more specific search parameters I set(by reducing radius and time interval), the more realiable data I get. Is this right?
2-) Everytime I execute SearchTweets() method, my SearchTweetsLimit (initially 180) decreases. Is there a direct correlation between the number of tweets returned from SearchTweets() and the decreasing amount in SearchTweetsLimit? For example, can you say something like this: "Every 50 tweets you get, your SearchTweetsLimit decrements(one by one)"?
So I conclude that the more specific search parameters I set(by reducing radius and time interval), the more realiable data I get. Is this right?
2-) Everytime I execute SearchTweets() method, my SearchTweetsLimit (initially 180) decreases. Is there a direct correlation between the number of tweets returned from SearchTweets() and the decreasing amount in SearchTweetsLimit? For example, can you say something like this: "Every 50 tweets you get, your SearchTweetsLimit decrements(one by one)"?