I'm using YQL to get the today's high and low temperatures in multiple cities. The following query will unnecessarily return a 10-day forecast for each city.
select item.forecast.high, item.forecast.low from weather.forecast
where woeid in (select woeid from geo.places(1) where text in ("ushuaia, ag", "dallas, tx"))
What I need is found under Channels 0 and 10 of the results (i.e. the first of each city). How can I limit the results to those two?