I want to get weather information in a specific place.
Right now I need to call to get them: the first one transferred my current position (lat / lon) to WOEID, the second call gets weather information using this WOEID.
Is it possible to combine these 2 queries?
First: select * from yahoo.maps.findLocation where q = "LAT, LON" and gflags = "R"
Second: select * from weather.bylocation, where location = WOEID AND unit = 'c'
source share