city = $city; $this->weather = new Weather($weather['id'], $weather['description'], $weather['icon']); $this->temperature = new Temperature(new Unit($temperature['now'] - 273.15, "\xB0C"), new Unit($temperature['min'] - 273.15, "\xB0C"), new Unit($temperature['max'] - 273.15, "\xB0C")); $this->pressure = new Unit($pressure, 'kPa'); $this->humidity = new Unit($humidity, '%'); $this->clouds = new Unit($clouds, '%'); $this->precipitation = new Unit($rain['val'], $rain['unit']); $this->wind = new Wind(new Unit($wind['speed']), new Unit($wind['deg'])); $this->time = $time; } }