PHP Classes

PHP Open Weathermap: Get the weather for a given location

Recommend this page to a friend!
     
  Info   Example   View files Files   Install with Composer Install with Composer   Download Download   Reputation   Support forum   Blog    
Ratings Unique User Downloads Download Rankings
StarStarStarStar 69%Total: 368 This week: 1All time: 6,835 This week: 42Up
Version License PHP version Categories
weathermap 4BSD License5PHP 5, Web services, Weather
Description 

Author

This package can get the weather for a given location.

It can send a HTTP request to the OpenWhethermap API Web server to retrieve the current weather conditions at a location with given latitude and longitude.

The class can return the weather conditions described using English text.

Picture of Marcel Kohls
  Performance   Level  
Name: Marcel Kohls <contact>
Classes: 2 packages by
Country: Brazil Brazil

Example

<?php
   
require_once('Weather.class.php');
   
   
$weather = new Weather();
   
   
$weather->latitude = "-26.984500";
   
$weather->longitude = "-48.631668";
   
$weather->unit = "C"; // units can be: "F" for Fahrenheit, "C" for Celsius, "K" for Kelvin
   
$weather->apiKey = "api-code-here";
   
   
    if (
$weather->loadWeather() == true){
        echo
'weather now is: <br />';
        echo
$weather->general.'<br />';
        echo
'('.$weather->detailed.')<br />';
        echo
'<img src="http://openweathermap.org/img/w/'.$weather->icon.'.png"><br />';
        echo
$weather->temperature.' '.$weather->unit.' <br /> ';
        echo
'min.:'.$weather->temp_min.' / max.:'.$weather->temp_min.'<br />';
        echo
'pressure: '.$weather->pressure.' hpa<br /> ';
        echo
'humidity: '.$weather->humidity.'% <br /> ';
       
//hpa
   
}
?>


  Files folder image Files (3)  
File Role Description
Accessible without login Plain text file index.php Example index file, demo
Plain text file Weather.class.php Class main class for weather object
Plain text file WeatherCondition.class.php Class support class for weather descriptions

The PHP Classes site has supported package installation using the Composer tool since 2013, as you may verify by reading this instructions page.
Install with Composer Install with Composer
 Version Control Unique User Downloads Download Rankings  
 0%
Total:368
This week:1
All time:6,835
This week:42Up
 User Ratings  
 
 All time
Utility:100%StarStarStarStarStarStar
Consistency:100%StarStarStarStarStarStar
Documentation:-
Examples:91%StarStarStarStarStar
Tests:-
Videos:-
Overall:69%StarStarStarStar
Rank:353