Im a beginner to perl and i have a problem that I don't know how to solve. Im trying to fetch xml-data from a website and put the value of temperature in an array.
This is my code so far:
use strict;
use warnings;
# For parsing
use XML::Simple;
# For downloading
use LWP::Simple;
# For debug output
use Data::Dumper;
# Turn off output buffering
$|=1;
# Note, no error checking here!
sub main
{
print "\nDownloading ....";
my $data = get('http://www.yr.no/place/Norway/Telemark/Sauherad/Gvarv/forecast_hour_by_hour.xml');
my $parser = new XML::Simple;
print "\nParsing ...";
my $dom = $parser->XMLin($data);
print "\n\n";
# Debug output.
#print Dumper($dom->{'forecast'});
# Data structure is a hash containing one key, 'entry'.
# Get the hash value and cast to an array.
my @entries = $dom->{'forecast'}->{'tabular'}->{'time'};
# Go through each array 'entry' element.
foreach my $entry(@entries)
{
print Dumper($entry);
# Each element is a hash.
# The band name can be got from one hash key.
my $tabular = $entry->{'temperature'};
#print "$tabular\n";
print "\n\n";
}
}
main();
And the output that I get on my terminal is:
},
{
'temperature' => {
'unit' => 'celsius',
'value' => '26'
},
'windSpeed' => {
'name' => 'Light breeze',
'mps' => '1.9'
},
'to' => '2016-08-17T16:00:00',
'pressure' => {
'unit' => 'hPa',
'value' => '1014.1'
},
'from' => '2016-08-17T15:00:00',
'precipitation' => {
'value' => '0'
},
'symbol' => {
'numberEx' => '1',
'var' => '01d',
'number' => '1',
'name' => 'Clear sky'
},
'windDirection' => {
'name' => 'North',
'code' => 'N',
'deg' => '4.4'
}
},
{
'precipitation' => {
'value' => '0'
},
'from' => '2016-08-17T16:00:00',
'windDirection' => {
'name' => 'North-northeast',
'code' => 'NNE',
'deg' => '20.6'
},
'symbol' => {
'number' => '1',
'name' => 'Clear sky',
'var' => '01d',
'numberEx' => '1'
},
'temperature' => {
'unit' => 'celsius',
'value' => '27'
},
'pressure' => {
'value' => '1013.4',
'unit' => 'hPa'
},
'to' => '2016-08-17T17:00:00',
'windSpeed' => {
'mps' => '1.2',
'name' => 'Light air'
}
},
{
'symbol' => {
'numberEx' => '1',
'var' => '01d',
'name' => 'Clear sky',
'number' => '1'
},
'windDirection' => {
'name' => 'East',
'code' => 'E',
'deg' => '83.0'
},
'from' => '2016-08-17T17:00:00',
'precipitation' => {
'value' => '0'
},
'windSpeed' => {
'mps' => '0.7',
'name' => 'Light air'
},
'pressure' => {
'unit' => 'hPa',
'value' => '1012.8'
},
'to' => '2016-08-17T18:00:00',
'temperature' => {
'unit' => 'celsius',
'value' => '27'
}
}
];
Not a HASH reference at script.pl line 43.
Why do I get this error and how can i fetch the values of temperature? Thanks in advance!