// Assume that the DAOs are perfectly accurate for their APIs
List<TemperatureLocation> temperatureLocations = temperatureLocationDao.getTemperatureLocationData(lat, lng);
// Build some weather data
WeatherData weatherData = new WeatherData();
weatherData.setTemperatureLocations(temperatureLocations);
return weatherData;
}