I want to track all tweets of a particular hashtag but i need only the tweets with geolocation. This line not working fine, the results are all tweets with geolocation.
stream.filter(track=["hashtag"],locations = GEOBOX_WORLD)
This work fine.
stream.filter(track=["hashtag"])
This work fine.
stream.filter(locations = GEOBOX_WORLD)
But the union of track and location don't work. There is some solution (without check tweet by tweet if .geo != None)? Thanks.