Я создаю страницы о парках.Для каждого парка есть широта / долгота, а для большинства парков я могу использовать API погоды Yahoo
Но по некоторым причинам некоторые страницы возвращают ошибки, подобные этой:
Неверный ввод/ forecastrss? w = 2347563
После звонка, который я делаю так в API погоды Yahoo:
http://www.geomojo.org/cgi-bin/reversegeocoder.cgi?long=-121.433098&lat=40.509312
Любая идея, как я могу решить эти видыошибки?
Вот мой код:
$url = 'http://www.geomojo.org/cgi-bin/reversegeocoder.cgi?long='.$lng.'&lat='.$lat;
// Calls the url to get the zip code and woeid
$webpage = file_get_contents($url);
//echo $webpage;
try
{
$xml = new SimpleXMLElement($url, 0, true);
// Gets the woeid to look up the weather in that specific place dynamically.
$woeid= $xml->woeid; // Displays "Text"
$zip = $xml->name; // Displays "Text"
// URL to send to yahoo weather to get weather RSS
$yahoo_url = 'http://weather.yahooapis.com/forecastrss?w='.$woeid;
$xml = file_get_contents($yahoo_url);
$yahoo_response = new SimpleXMLElement($xml , 0, false);
$weather_description = $yahoo_response->channel->item->description;
$splitdata = explode('<a', $weather_description);
echo '<p>'.$splitdata[0].'</p>';
}
catch (Exception $e)
{
echo 'Caught exception: ', $e->getMessage(), "\n";
}
Вот URL-адрес примера, где это не работает.Смотрите раздел о погоде с левой стороны:
http://www.comehike.com/outdoors/parks/park.php?park_id=86