Skip to content

Instantly share code, notes, and snippets.

@nickromano
Last active August 29, 2015 14:13
Show Gist options
  • Save nickromano/01b0ffbf2c20b8d4dcfb to your computer and use it in GitHub Desktop.
Save nickromano/01b0ffbf2c20b8d4dcfb to your computer and use it in GitHub Desktop.
Heater
/* globals moment, _, $, d3 */
var heaterSheet = '1ZFNxoobx67B7UATHimD1sNglaim2ZG007u-A9XZ-SPI';
var googleDocData = (function () {
'use strict';
function dateForText(text) {
return moment(text, 'MMMM DD, YYYY at hh :mmA');
}
function prepCells(data) {
// Only fetch the second column and pull the dates from each cell
data = _.filter(data.feed.entry, function(cell) {
return cell.title.$t[0] === 'B';
});
return _.map(data, function(cell) {
return dateForText(cell.content.$t);
});
}
function fetchCellsForSheetName(sheetName, completion) {
var url = 'https://spreadsheets.google.com/feeds/cells/' + sheetName + '/default/public/basic?alt=json';
$.getJSON(url, function(data) {
var cells = prepCells(data);
completion(cells);
});
}
function calculateMinutesByDateForCells(cells) {
var resultsByDate = {};
for (var i = 0; i < cells.length; i += 2) {
var onDate = cells[i];
var offDate = cells[i + 1];
var minutes = offDate.diff(onDate, 'minutes');
var key = onDate.format('MM:DD:YYYY');
if (key in resultsByDate) {
resultsByDate[key] += minutes;
} else {
resultsByDate[key] = minutes;
}
}
return _.map(resultsByDate, function(value, key) {
return {
date: key,
minutes: value
};
});
}
function calculateMinutesByDayOfWeekForCells(cells) {
var resultsByDayOfWeek = {};
for (var i = 0; i < cells.length; i += 2) {
var onDate = cells[i];
var offDate = cells[i + 1];
var minutes = offDate.diff(onDate, 'minutes');
var dayOfWeekKey = onDate.format('dddd');
if (dayOfWeekKey in resultsByDayOfWeek) {
resultsByDayOfWeek[dayOfWeekKey] += minutes;
} else {
resultsByDayOfWeek[dayOfWeekKey] = minutes;
}
}
return _.map(resultsByDayOfWeek, function(value, key) {
return {
date: key,
minutes: value
};
});
}
return {
getDataForSheet: function(sheet, completion) {
fetchCellsForSheetName(sheet, function(cells) {
var results = calculateMinutesByDateForCells(cells);
completion(results);
});
}
};
})();
function buildGraph(data) {
'use strict';
_.each(data, function(d) {
d.date = new Date(moment(d.date, 'MM:DD:YYYY'));
});
data = _.sortBy(data, 'date');
var dates = _.pluck(data, 'date');
var title = 'Minutes';
var tip = d3.tip().attr('class', 'd3-tip').html(function(d) {
var hours = parseInt(d[key] / 60, 10);
var minutes = d[key] % 60;
return moment(d.date).format('MM/DD') + ' - ' + hours + 'hr ' + minutes + 'm';
});
var graphClass = '.daily-graph';
$(graphClass).empty();
var key = 'minutes';
var margin = {top: 20, right: 28, bottom: 30, left: 28},
width = $(graphClass).width() - margin.left - margin.right,
height = 340 - margin.top - margin.bottom;
var x = d3.time.scale()
.range([0, width]);
var y = d3.scale.linear()
.range([height, 0]);
var svg = d3.select(graphClass)
.append('svg')
.attr('width', width + margin.left + margin.right)
.attr('height', height + margin.top + margin.bottom)
.append('g')
.attr('transform', 'translate(' + margin.left + ',' + margin.top + ')');
svg.call(tip);
x.domain([d3.min(dates), d3.max(dates)]);
var valueMax = d3.max(data, function(d) { return d[key]; });
valueMax = Math.ceil(valueMax * 1.25);
y.domain([0, valueMax]);
function makeXAxis() {
return d3.svg.axis()
.scale(x)
.orient('bottom')
.ticks(data.length);
}
function makeYAxis() {
return d3.svg.axis()
.scale(y)
.orient('left')
.ticks(5);
}
svg.append('g')
.attr('class', 'grid')
.attr('transform', 'translate(0,' + height + ')')
.call(makeXAxis()
.tickSize(-height, 0, 0)
.tickFormat(''));
svg.append('g')
.attr('class', 'grid')
.call(makeYAxis()
.tickSize(-width, 0, 0)
.tickFormat(''));
var weatherContainer = svg.append('g')
.attr('class', 'weather');
var areaZero = d3.svg.area()
.interpolate('monotone')
.x(function(d) { return x(d.date); })
.y0(height)
.y1(height);
var area = d3.svg.area()
.interpolate('monotone')
.x(function(d) { return x(d.date); })
.y0(height)
.y1(function(d) { return y(d[key]); });
svg.append('path')
.datum(data)
.attr('class', 'area')
.attr('d', areaZero)
.transition()
.duration(1000)
.attr('d', area);
var lineZero = d3.svg.line()
.interpolate('monotone')
.x(function(d) { return x(d.date); })
.y(height);
var line = d3.svg.line()
.interpolate('monotone')
.x(function(d) { return x(d.date); })
.y(function(d) { return y(d[key]); });
svg.append('path')
.attr('style', 'stroke-width: 2px;stroke: steelblue;fill: none;')
.datum(data)
.attr('d', lineZero)
.transition()
.duration(1000)
.attr('d', line);
svg.selectAll('.incident-circle')
.data(data)
.enter().append('circle')
.attr('class', 'incident-circle')
.attr('cx', function(d) { return x(d.date); })
.attr('r', 4)
.attr('cy', height)
.on('mouseover', tip.show)
.on('mouseout', tip.hide)
.transition()
.duration(600)
.attr('cy', function(d) { return y(d[key]); });
svg.append('g')
.attr('class', 'x axis')
.attr('transform', 'translate(0,' + height + ')')
.call(makeXAxis());
svg.append('g')
.attr('class', 'y axis')
.call(makeYAxis())
.append('text')
.attr('transform', 'rotate(-90)')
.attr('y', 6)
.attr('dy', '.71em')
.style('text-anchor', 'end')
.text(title);
var y2 = d3.scale.linear()
.range([height, 0]);
var weatherDays = [];
function addWeatherToGraph() {
var observations = _.flatten(_.map(weatherDays, function(weatherDay) {
return weatherDay.history.observations;
}));
var weatherData = _.map(observations, function(observation) {
var year = observation.date.year;
var month = observation.date.mon;
var day = observation.date.mday;
var hour = observation.date.hour;
var minute = observation.date.min;
var dateString = year + ':' + month + ':' + day + ' ' + hour + ':' + minute;
return {
date: new Date(moment(dateString, 'YYYY:MM:DD hh:mm')),
temp: observation.tempi
};
});
weatherData = _.sortBy(weatherData, 'date');
var weatherValueMin = d3.min(weatherData, function(d) { return d.temp; });
weatherValueMin = Math.ceil(weatherValueMin - (0.25 * weatherValueMin));
var weatherValueMax = d3.max(weatherData, function(d) { return d.temp; });
weatherValueMax = Math.ceil(weatherValueMax * 1.25);
y2.domain([weatherValueMin, weatherValueMax]);
function makeY2Axis() {
return d3.svg.axis()
.scale(y2)
.orient('right')
.tickFormat(function(d) {
return d.toString() + '\u00B0';
})
.ticks(5);
}
var weatherLine = d3.svg.line()
.interpolate('monotone')
.x(function(d) { return x(d.date); })
.y(function(d) { return y2(d.temp); });
weatherContainer.append('path')
.attr('style', 'stroke-width: 1px;stroke: gray;fill: none;')
.datum(weatherData)
.attr('d', lineZero)
.transition()
.duration(1000)
.attr('d', weatherLine);
svg.append('g')
.attr('class', 'y2 axis')
.attr('transform', 'translate(' + width + ',0)')
.call(makeY2Axis())
.append('text')
.attr('transform', 'translate(-20,0)rotate(-90)')
.attr('y', 6)
.attr('dy', '.71em')
.style('text-anchor', 'end')
.text('Tempurature');
}
$.getJSON('weather.json', function(data) {
weatherDays = data;
addWeatherToGraph();
});
}
googleDocData.getDataForSheet(heaterSheet, function(data) {
'use strict';
buildGraph(data);
});
<html>
<head>
<title>Heater Usage</title>
<link href='http://fonts.googleapis.com/css?family=Cabin:400,600' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="styles.css">
</head>
<body>
<div class="page-container">
<p class="text">Daily heater usage overlayed against tempurature in San Francisco.</p>
<div class="daily-graph">
<p class="daily-graph-loading">Loading...</p>
</div>
<p>
<small>Data:
<a href="https://docs.google.com/spreadsheets/d/1ZFNxoobx67B7UATHimD1sNglaim2ZG007u-A9XZ-SPI/pubhtml" target="_blank">Heater</a> &middot;
<a href="http://wunderground.com" target="_blank">Weather</a>
</small>
<small style="float: right">Nick Romano</small>
</p>
</div>
<script src="https://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/underscore.js/1.7.0/underscore-min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/moment.js/2.8.4/moment.min.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3-tip/0.6.3/d3-tip.min.js"></script>
<script type="text/javascript" src="app.js"></script>
</body>
</html>
body {
font-size: 15px;
font-family: 'Cabin', sans-serif;
}
.page-container {
width: 100%;
padding: 30px 20px;
box-sizing: border-box;
}
.daily-graph-loading {
text-align: center;
margin: 20px;
}
.daily-graph {
height: 340px;
}
.daily-graph .axis text {
font-size: 9px;
}
.daily-graph .axis path,
.daily-graph .axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.daily-graph .area {
fill: lightblue;
opacity: 0.4;
stroke: none;
}
.daily-graph label {
position: absolute;
top: 10px;
right: 10px;
}
.daily-graph .incident-circle,
.daily-graph .responded-circle,
.daily-graph .arrived-circle {
fill: white;
stroke: steelblue;
stroke-width: 2px;
}
.grid .tick {
stroke-width: 1px;
stroke: #efefef;
}
.d3-tip {
line-height: 1;
font-weight: bold;
font-size: 12px;
padding: 12px;
background: rgba(0, 0, 0, 0.8);
color: #fff;
border-radius: 2px;
pointer-events: none;
}
/* Creates a small triangle extender for the tooltip */
.d3-tip:after {
box-sizing: border-box;
display: inline;
font-size: 10px;
width: 100%;
line-height: 1;
color: rgba(0, 0, 0, 0.8);
position: absolute;
pointer-events: none;
}
/* Northward tooltips */
.d3-tip.n:after {
content: "\25BC";
margin: -1px 0 0 0;
top: 100%;
left: 0;
text-align: center;
}
/* Eastward tooltips */
.d3-tip.e:after {
content: "\25C0";
margin: -4px 0 0 0;
top: 50%;
left: -8px;
}
/* Southward tooltips */
.d3-tip.s:after {
content: "\25B2";
margin: 0 0 1px 0;
top: -8px;
left: 0;
text-align: center;
}
/* Westward tooltips */
.d3-tip.w:after {
content: "\25B6";
margin: -4px 0 0 -1px;
top: 50%;
left: 100%;
}
[{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 7, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 7, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"5.6", "dewpti":"42.1","hum":"77","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.1", "pressurei":"30.19","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 070856Z 00000KT 10SM CLR 09/06 A3019 RMK AO2 SLP221 T00940056 56004 $" },
{
"date": {
"pretty": "1:56 AM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"6.7", "dewpti":"44.1","hum":"86","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"150","wdire":"SSE","vism":"14.5", "visi":"9.0","pressurem":"1022.1", "pressurei":"30.19","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 070956Z 15003KT 9SM CLR 09/07 A3018 RMK AO2 SLP221 T00890067 $" },
{
"date": {
"pretty": "2:56 AM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.3", "tempi":"46.9","dewptm":"6.1", "dewpti":"43.0","hum":"86","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"140","wdire":"SE","vism":"16.1", "visi":"10.0","pressurem":"1021.8", "pressurei":"30.18","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 071056Z 14005KT 10SM CLR 08/06 A3018 RMK AO2 SLP218 T00830061 $" },
{
"date": {
"pretty": "3:56 AM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"8.3", "dewpti":"46.9","hum":"89","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"16.1", "visi":"10.0","pressurem":"1021.5", "pressurei":"30.17","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 071156Z 06003KT 10SM CLR 10/08 A3017 RMK AO2 SLP215 T01000083 10111 20078 58006 $" },
{
"date": {
"pretty": "4:56 AM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"7.2", "dewpti":"45.0","hum":"89","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1020.9", "pressurei":"30.15","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 071256Z 00000KT 10SM CLR 09/07 A3015 RMK AO2 SLP209 T00890072 $" },
{
"date": {
"pretty": "5:56 AM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"7.8", "tempi":"46.0","dewptm":"6.7", "dewpti":"44.1","hum":"93","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1021.3", "pressurei":"30.16","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 071356Z 00000KT 10SM CLR 08/07 A3016 RMK AO2 SLP213 T00780067 $" },
{
"date": {
"pretty": "6:56 AM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"7.2", "tempi":"45.0","dewptm":"5.6", "dewpti":"42.1","hum":"90","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.1", "pressurei":"30.19","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 071456Z 00000KT 10SM FEW010 07/06 A3018 RMK AO2 SLP221 T00720056 53006 $" },
{
"date": {
"pretty": "7:56 AM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"7.2", "dewpti":"45.0","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1022.6", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 071556Z 00000KT 8SM CLR 09/07 A3020 RMK AO2 SLP226 T00940072" },
{
"date": {
"pretty": "8:56 AM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"9.4", "dewpti":"48.9","hum":"89","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1023.3", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 071656Z 00000KT 8SM CLR 11/09 A3022 RMK AO2 SLP233 T01110094" },
{
"date": {
"pretty": "9:56 AM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"8.9", "dewpti":"48.0","hum":"75","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"9.7", "visi":"6.0","pressurem":"1023.7", "pressurei":"30.23","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 071756Z 00000KT 6SM CLR 13/09 A3023 RMK AO2 SLP237 T01330089 10133 20072 51016" },
{
"date": {
"pretty": "10:56 AM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"9.4", "dewpti":"48.9","hum":"77","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"12.9", "visi":"8.0","pressurem":"1023.1", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 071856Z 06003KT 8SM FEW200 13/09 A3022 RMK AO2 SLP231 T01330094" },
{
"date": {
"pretty": "11:56 AM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"11.1", "dewpti":"52.0","hum":"89","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"14.5", "visi":"9.0","pressurem":"1022.2", "pressurei":"30.19","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 071956Z 09003KT 9SM FEW200 13/11 A3019 RMK AO2 SLP222 T01280111" },
{
"date": {
"pretty": "12:56 PM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"11.7", "dewpti":"53.1","hum":"87","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"50","wdire":"NE","vism":"14.5", "visi":"9.0","pressurem":"1020.9", "pressurei":"30.15","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 072056Z 05003KT 9SM SCT200 14/12 A3015 RMK AO2 SLP209 T01390117 58028" },
{
"date": {
"pretty": "1:56 PM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"10.0", "dewpti":"50.0","hum":"75","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"40","wdire":"NE","vism":"14.5", "visi":"9.0","pressurem":"1020.1", "pressurei":"30.13","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 072156Z 04004KT 9SM SCT200 14/10 A3013 RMK AO2 SLP201 T01440100" },
{
"date": {
"pretty": "2:56 PM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.0", "tempi":"59.0","dewptm":"9.4", "dewpti":"48.9","hum":"69","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"20","wdire":"NNE","vism":"16.1", "visi":"10.0","pressurem":"1019.9", "pressurei":"30.12","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 072256Z 02003KT 10SM SCT200 15/09 A3012 RMK AO2 SLP199 T01500094" },
{
"date": {
"pretty": "3:56 PM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"9.4", "dewpti":"48.9","hum":"72","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1019.7", "pressurei":"30.12","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 072356Z 01004KT 10SM SCT200 14/09 A3011 RMK AO2 SLP197 T01440094 10156 20128 56013" },
{
"date": {
"pretty": "4:56 PM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"8.9", "dewpti":"48.0","hum":"72","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"20","wdire":"NNE","vism":"16.1", "visi":"10.0","pressurem":"1019.2", "pressurei":"30.10","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 080056Z 02004KT 10SM FEW180 SCT200 14/09 A3010 RMK AO2 SLP192 T01390089" },
{
"date": {
"pretty": "5:56 PM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.0", "tempi":"59.0","dewptm":"7.2", "dewpti":"45.0","hum":"60","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1019.0", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 080156Z 00000KT 10SM FEW200 15/07 A3009 RMK AO2 SLP190 T01500072" },
{
"date": {
"pretty": "6:56 PM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"8.3", "dewpti":"46.9","hum":"67","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1019.0", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 080256Z 00000KT 10SM CLR 14/08 A3009 RMK AO2 SLP190 T01440083 56007" },
{
"date": {
"pretty": "7:56 PM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"8.3", "dewpti":"46.9","hum":"77","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1018.9", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 080356Z 00000KT 10SM CLR 12/08 A3009 RMK AO2 SLP189 T01220083" },
{
"date": {
"pretty": "8:56 PM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"8.9", "dewpti":"48.0","hum":"77","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"190","wdire":"South","vism":"16.1", "visi":"10.0","pressurem":"1018.8", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 080456Z 19003KT 10SM FEW180 13/09 A3009 RMK AO2 SLP188 T01280089" },
{
"date": {
"pretty": "9:56 PM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"9.4", "dewpti":"48.9","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1018.6", "pressurei":"30.08","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 080556Z 00000KT 10SM SCT180 12/09 A3008 RMK AO2 SLP186 T01170094 10156 20117 58004" },
{
"date": {
"pretty": "10:56 PM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"8.3", "dewpti":"46.9","hum":"80","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1018.7", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 080656Z 00000KT 10SM SCT180 12/08 A3009 RMK AO2 SLP187 T01170083" },
{
"date": {
"pretty": "11:56 PM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"8.3", "dewpti":"46.9","hum":"86","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"160","wdire":"SSE","vism":"16.1", "visi":"10.0","pressurem":"1018.7", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 080756Z 16005KT 10SM SCT180 11/08 A3008 RMK AO2 SLP187 T01060083 401560072" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 07, 2015",
"year": "2015",
"mon": "01",
"mday": "07",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"0","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"12", "meantempi":"53","meandewptm":"8", "meandewpti":"47","meanpressurem":"1021", "meanpressurei":"30.15","meanwindspdm":"3", "meanwindspdi":"2","meanwdire":"","meanwdird":"75","meanvism":"15", "meanvisi":"9","humidity":"","maxtempm":"16", "maxtempi":"60","mintempm":"7", "mintempi":"45","maxhumidity":"93","minhumidity":"57","maxdewptm":"12", "maxdewpti":"53","mindewptm":"6", "mindewpti":"42","maxpressurem":"1024", "maxpressurei":"30.23","minpressurem":"1019", "minpressurei":"30.08","maxwspdm":"11", "maxwspdi":"7","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"10", "minvisi":"6","gdegreedays":"2","heatingdegreedays":"12","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"112","monthtodateheatingdegreedaysnormal":"105","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"547","since1julheatingdegreedaysnormal":"1115","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 8, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 8, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"7.2", "dewpti":"45.0","hum":"77","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1018.3", "pressurei":"30.07","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 080856Z 00000KT 10SM SCT180 11/07 A3007 RMK AO2 SLP183 T01110072 58003" },
{
"date": {
"pretty": "1:56 AM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"7.8", "dewpti":"46.0","hum":"90","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1018.6", "pressurei":"30.08","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 080956Z 00000KT 10SM FEW100 SCT180 09/08 A3008 RMK AO2 SLP186 T00940078" },
{
"date": {
"pretty": "2:56 AM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"7.2", "dewpti":"45.0","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1018.9", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 081056Z 00000KT 10SM FEW100 BKN220 09/07 A3009 RMK AO2 SLP189 T00940072" },
{
"date": {
"pretty": "3:56 AM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"7.2", "dewpti":"45.0","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1018.2", "pressurei":"30.07","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 081156Z 00000KT 10SM FEW100 BKN220 09/07 A3007 RMK AO2 SLP182 T00940072 10122 20094 58001" },
{
"date": {
"pretty": "4:56 AM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"7.8", "dewpti":"46.0","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1017.7", "pressurei":"30.06","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 081256Z 00000KT 10SM FEW100 SCT180 BKN200 10/08 A3006 RMK AO2 SLP177 T01000078" },
{
"date": {
"pretty": "5:56 AM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"8.3", "dewpti":"46.9","hum":"89","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1017.7", "pressurei":"30.06","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 081356Z 00000KT 10SM FEW180 BKN200 10/08 A3005 RMK AO2 SLP177 T01000083" },
{
"date": {
"pretty": "6:56 AM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"7.2", "dewpti":"45.0","hum":"83","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1017.7", "pressurei":"30.06","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 081456Z 00000KT 10SM BKN180 10/07 A3006 RMK AO2 SLP177 T01000072 55005" },
{
"date": {
"pretty": "7:56 AM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.0", "dewpti":"50.0","hum":"93","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1018.4", "pressurei":"30.08","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 081556Z 00000KT 10SM BKN180 11/10 A3007 RMK AO2 SLP184 T01110100" },
{
"date": {
"pretty": "8:56 AM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.6", "dewpti":"51.1","hum":"97","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1019.2", "pressurei":"30.10","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 081656Z 00000KT 10SM BKN180 BKN200 11/11 A3010 RMK AO2 SLP192 T01110106" },
{
"date": {
"pretty": "9:56 AM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"10.0", "dewpti":"50.0","hum":"80","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1019.3", "pressurei":"30.10","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 081756Z 00000KT 9SM BKN180 BKN200 13/10 A3010 RMK AO2 SLP193 T01330100 10133 20094 51016" },
{
"date": {
"pretty": "10:56 AM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"10.0", "dewpti":"50.0","hum":"80","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"30","wdire":"NNE","vism":"12.9", "visi":"8.0","pressurem":"1018.7", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 081856Z 03004KT 8SM FEW160 BKN180 13/10 A3009 RMK AO2 SLP187 T01330100" },
{
"date": {
"pretty": "11:56 AM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"10.6", "dewpti":"51.1","hum":"86","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"8.0", "visi":"5.0","pressurem":"1017.7", "pressurei":"30.06","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 081956Z 06003KT 5SM BR FEW009 OVC160 13/11 A3005 RMK AO2 SLP177 T01280106" },
{
"date": {
"pretty": "12:56 PM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"11.1", "dewpti":"52.0","hum":"87","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1016.8", "pressurei":"30.03","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 082056Z 00000KT 4SM BR FEW007 BKN160 BKN180 13/11 A3003 RMK AO2 SLP168 T01330111 58025" },
{
"date": {
"pretty": "1:56 PM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"11.1", "dewpti":"52.0","hum":"87","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1017.0", "pressurei":"30.04","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 082156Z 00000KT 4SM BR FEW009 BKN160 BKN180 13/11 A3003 RMK AO2 SLP170 T01330111" },
{
"date": {
"pretty": "2:56 PM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"10.6", "dewpti":"51.1","hum":"81","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"8.0", "visi":"5.0","pressurem":"1016.6", "pressurei":"30.02","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Haze","icon":"hazy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 082256Z 00000KT 5SM HZ BKN150 OVC180 14/11 A3002 RMK AO2 SLP166 T01390106" },
{
"date": {
"pretty": "3:56 PM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"10.0", "dewpti":"50.0","hum":"75","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"8.0", "visi":"5.0","pressurem":"1016.5", "pressurei":"30.02","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Haze","icon":"hazy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 082356Z 00000KT 5SM HZ BKN150 OVC180 14/10 A3002 RMK AO2 SLP165 T01440100 10150 20122 58003" },
{
"date": {
"pretty": "4:56 PM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"8.3", "dewpti":"46.9","hum":"67","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"9.7", "visi":"6.0","pressurem":"1016.5", "pressurei":"30.02","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Haze","icon":"hazy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 090056Z 00000KT 6SM HZ BKN150 BKN180 14/08 A3002 RMK AO2 SLP165 T01440083" },
{
"date": {
"pretty": "5:56 PM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"8.9", "dewpti":"48.0","hum":"70","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"9.7", "visi":"6.0","pressurem":"1016.2", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Haze","icon":"hazy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 090156Z 00000KT 6SM HZ SCT150 BKN180 14/09 A3001 RMK AO2 SLP162 T01440089" },
{
"date": {
"pretty": "6:56 PM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"10.0", "dewpti":"50.0","hum":"83","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"11.3", "visi":"7.0","pressurem":"1016.1", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 090256Z 06003KT 7SM SCT150 BKN180 13/10 A3001 RMK AO2 SLP161 T01280100 58004" },
{
"date": {
"pretty": "7:56 PM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"11.1", "dewpti":"52.0","hum":"93","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"9.7", "visi":"6.0","pressurem":"1016.1", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 090356Z 09003KT 6SM BR FEW150 BKN180 12/11 A3001 RMK AO2 SLP161 T01220111" },
{
"date": {
"pretty": "8:56 PM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"8.9", "dewpti":"48.0","hum":"75","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1016.2", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 090456Z 00000KT 7SM BKN180 13/09 A3001 RMK AO2 SLP162 T01330089" },
{
"date": {
"pretty": "9:56 PM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"8.9", "dewpti":"48.0","hum":"80","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1016.0", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 090556Z 00000KT 10SM BKN180 12/09 A3001 RMK AO2 SLP160 T01220089 10156 20117 50000" },
{
"date": {
"pretty": "10:56 PM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"10.6", "dewpti":"51.1","hum":"93","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"30","wdire":"NNE","vism":"12.9", "visi":"8.0","pressurem":"1016.2", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 090656Z 03003KT 8SM BKN180 12/11 A3001 RMK AO2 SLP162 T01170106" },
{
"date": {
"pretty": "11:56 PM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"8.9", "dewpti":"48.0","hum":"83","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1016.2", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 090756Z 00000KT 8SM BKN180 12/09 A3001 RMK AO2 SLP162 T01170089 401560094" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 08, 2015",
"year": "2015",
"mon": "01",
"mday": "08",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"0","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"13", "meantempi":"55","meandewptm":"9", "meandewpti":"49","meanpressurem":"1017", "meanpressurei":"30.05","meanwindspdm":"1", "meanwindspdi":"1","meanwdire":"","meanwdird":"54","meanvism":"13", "meanvisi":"8","humidity":"","maxtempm":"16", "maxtempi":"60","mintempm":"9", "mintempi":"49","maxhumidity":"100","minhumidity":"67","maxdewptm":"11", "maxdewpti":"52","mindewptm":"7", "mindewpti":"45","maxpressurem":"1019", "maxpressurei":"30.10","minpressurem":"1016", "minpressurei":"30.01","maxwspdm":"11", "maxwspdi":"7","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"6", "minvisi":"4","gdegreedays":"4","heatingdegreedays":"10","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"122","monthtodateheatingdegreedaysnormal":"120","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"557","since1julheatingdegreedaysnormal":"1130","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 9, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 9, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"9.4", "dewpti":"48.9","hum":"89","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1016.2", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 090856Z 00000KT 8SM SCT120 BKN180 11/09 A3001 RMK AO2 SLP162 T01110094 51002" },
{
"date": {
"pretty": "1:56 AM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"9.4", "dewpti":"48.9","hum":"89","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1016.1", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 090956Z 00000KT 8SM BKN180 11/09 A3001 RMK AO2 SLP161 T01110094" },
{
"date": {
"pretty": "2:56 AM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"10.0", "dewpti":"50.0","hum":"89","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1016.3", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 091056Z 01004KT 8SM OVC180 12/10 A3001 RMK AO2 SLP163 T01170100" },
{
"date": {
"pretty": "3:56 AM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"11.1", "dewpti":"52.0","hum":"96","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"9.7", "visi":"6.0","pressurem":"1016.1", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 091156Z 00000KT 6SM BR OVC180 12/11 A3001 RMK AO2 SLP161 T01170111 10128 20106 58001" },
{
"date": {
"pretty": "4:56 AM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.6", "dewpti":"51.1","hum":"97","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"160","wdire":"SSE","vism":"9.7", "visi":"6.0","pressurem":"1016.0", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 091256Z 16003KT 6SM BR OVC150 11/11 A3000 RMK AO2 SLP160 T01110106" },
{
"date": {
"pretty": "5:56 AM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.0", "dewpti":"50.0","hum":"96","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"9.7", "visi":"6.0","pressurem":"1015.6", "pressurei":"29.99","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 091356Z 29005KT 6SM BR BKN150 11/10 A2999 RMK AO2 SLP156 T01060100" },
{
"date": {
"pretty": "6:56 AM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"11.1", "dewpti":"52.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1016.0", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 091456Z 00000KT 7SM FEW150 BKN180 11/11 A3000 RMK AO2 SLP160 T01110111 55002" },
{
"date": {
"pretty": "7:56 AM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"11.1", "dewpti":"52.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1016.4", "pressurei":"30.02","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 091556Z COR 00000KT 7SM FEW120 SCT150 BKN180 11/11 A3002 RMK AO2 SLP164 T01110111" },
{
"date": {
"pretty": "8:56 AM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"10.6", "dewpti":"51.1","hum":"90","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1016.8", "pressurei":"30.03","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 091656Z 00000KT 7SM FEW130 SCT160 BKN200 12/11 A3003 RMK AO2 SLP168 T01220106" },
{
"date": {
"pretty": "9:56 AM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"11.7", "dewpti":"53.1","hum":"97","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"40","wdire":"NE","vism":"11.3", "visi":"7.0","pressurem":"1016.9", "pressurei":"30.03","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 091756Z 04003KT 7SM FEW150 SCT180 BKN200 12/12 A3003 RMK AO2 SLP169 T01220117 10128 20106 51009" },
{
"date": {
"pretty": "10:56 AM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"11.7", "dewpti":"53.1","hum":"90","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"20","wdire":"NNE","vism":"11.3", "visi":"7.0","pressurem":"1016.7", "pressurei":"30.03","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 091856Z 02004KT 7SM FEW150 SCT180 BKN200 13/12 A3002 RMK AO2 SLP167 T01330117" },
{
"date": {
"pretty": "11:56 AM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"10.6", "dewpti":"51.1","hum":"86","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"30","wdire":"NNE","vism":"11.3", "visi":"7.0","pressurem":"1015.9", "pressurei":"30.00","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 091956Z 03006KT 7SM FEW160 BKN200 13/11 A3000 RMK AO2 SLP159 T01280106" },
{
"date": {
"pretty": "12:56 PM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.0", "tempi":"57.2","dewptm":"11.0", "dewpti":"51.8","hum":"82","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"30","wdire":"NNE","vism":"12.9", "visi":"8.0","pressurem":"1015.1", "pressurei":"29.98","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 092056Z 03003KT 8SM FEW160 BKN200 14/11 A2998" },
{
"date": {
"pretty": "1:56 PM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"11.1", "dewpti":"52.0","hum":"81","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1014.6", "pressurei":"29.96","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 092156Z 00000KT 8SM FEW130 SCT150 BKN200 14/11 A2996 RMK AO2 SLP146 T01440111" },
{
"date": {
"pretty": "2:56 PM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"11.7", "dewpti":"53.1","hum":"84","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"80","wdire":"East","vism":"11.3", "visi":"7.0","pressurem":"1014.8", "pressurei":"29.97","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 092256Z 08004KT 7SM SCT130 SCT150 BKN200 14/12 A2997 RMK AO2 SLP148 T01440117" },
{
"date": {
"pretty": "3:56 PM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"16.7", "tempi":"62.1","dewptm":"11.7", "dewpti":"53.1","hum":"72","wspdm":"18.5", "wspdi":"11.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"14.5", "visi":"9.0","pressurem":"1015.0", "pressurei":"29.98","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 092356Z 29010KT 9SM FEW010 SCT130 BKN150 BKN200 17/12 A2998 RMK AO2 SLP150 T01670117 10172 20122 55000" },
{
"date": {
"pretty": "4:56 PM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.0", "tempi":"59.0","dewptm":"12.2", "dewpti":"54.0","hum":"83","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1014.9", "pressurei":"29.97","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 100056Z 28005KT 10SM FEW130 BKN150 BKN200 15/12 A2997 RMK AO2 SLP149 T01500122" },
{
"date": {
"pretty": "5:27 PM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "17",
"min": "27",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:27 AM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "01",
"min": "27",
"tzname": "UTC"
},
"tempm":"14.0", "tempi":"57.2","dewptm":"12.0", "dewpti":"53.6","hum":"88","wspdm":"16.7", "wspdi":"10.4","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"300","wdire":"WNW","vism":"16.1", "visi":"10.0","pressurem":"1014.8", "pressurei":"29.97","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 100127Z 30009KT 10SM FEW009 SCT150 BKN200 14/12 A2997 RMK AO2" },
{
"date": {
"pretty": "5:56 PM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"12.8", "dewpti":"55.0","hum":"93","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1015.0", "pressurei":"29.98","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 100156Z 28006KT 10SM FEW009 SCT150 SCT200 14/13 A2998 RMK AO2 SLP150 T01390128" },
{
"date": {
"pretty": "6:56 PM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"12.2", "dewpti":"54.0","hum":"93","wspdm":"14.8", "wspdi":"9.2","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"16.1", "visi":"10.0","pressurem":"1015.5", "pressurei":"29.99","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 100256Z 29008KT 10SM FEW011 SCT150 SCT200 13/12 A2999 RMK AO2 SLP155 T01330122 53005" },
{
"date": {
"pretty": "7:56 PM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.2", "dewpti":"54.0","hum":"96","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"14.5", "visi":"9.0","pressurem":"1015.5", "pressurei":"29.99","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 100356Z 29007KT 9SM FEW150 SCT200 13/12 A2999 RMK AO2 SLP155 T01280122" },
{
"date": {
"pretty": "8:56 PM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"11.7", "dewpti":"53.1","hum":"90","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1015.8", "pressurei":"30.00","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 100456Z 28005KT 10SM FEW150 BKN200 13/12 A3000 RMK AO2 SLP158 T01330117" },
{
"date": {
"pretty": "9:56 PM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"10.6", "dewpti":"51.1","hum":"90","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"150","wdire":"SSE","vism":"16.1", "visi":"10.0","pressurem":"1016.0", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 100556Z 15003KT 10SM FEW150 BKN200 12/11 A3000 RMK AO2 SLP160 T01220106 10167 20122 53005" },
{
"date": {
"pretty": "10:56 PM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"10.6", "dewpti":"51.1","hum":"90","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1015.6", "pressurei":"29.99","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 100656Z 00000KT 10SM BKN170 12/11 A2999 RMK AO2 SLP156 T01220106" },
{
"date": {
"pretty": "11:56 PM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"11.1", "dewpti":"52.0","hum":"96","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1015.3", "pressurei":"29.99","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 100756Z 00000KT 10SM BKN170 12/11 A2998 RMK AO2 SLP153 T01170111 401720106" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 09, 2015",
"year": "2015",
"mon": "01",
"mday": "09",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"0","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"14", "meantempi":"57","meandewptm":"11", "meandewpti":"52","meanpressurem":"1016", "meanpressurei":"30.00","meanwindspdm":"6", "meanwindspdi":"4","meanwdire":"","meanwdird":"325","meanvism":"13", "meanvisi":"8","humidity":"","maxtempm":"17", "maxtempi":"63","mintempm":"11", "mintempi":"51","maxhumidity":"100","minhumidity":"72","maxdewptm":"13", "maxdewpti":"55","mindewptm":"9", "mindewpti":"49","maxpressurem":"1017", "maxpressurei":"30.03","minpressurem":"1014", "minpressurei":"29.96","maxwspdm":"21", "maxwspdi":"13","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"10", "minvisi":"6","gdegreedays":"7","heatingdegreedays":"8","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"130","monthtodateheatingdegreedaysnormal":"135","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"565","since1julheatingdegreedaysnormal":"1145","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"10.6", "dewpti":"51.1","hum":"90","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1015.3", "pressurei":"29.99","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 100856Z 00000KT 10SM BKN170 12/11 A2998 RMK AO2 SLP153 T01220106 56007" },
{
"date": {
"pretty": "1:56 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"11.1", "dewpti":"52.0","hum":"93","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"350","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1015.3", "pressurei":"29.99","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 100956Z 35005KT 8SM SCT170 12/11 A2998 RMK AO2 SLP153 T01220111" },
{
"date": {
"pretty": "2:56 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"11.7", "dewpti":"53.1","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1015.5", "pressurei":"29.99","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 101056Z 00000KT 7SM CLR 12/12 A2999 RMK AO2 SLP155 T01170117" },
{
"date": {
"pretty": "3:56 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"9.4", "dewpti":"48.9","hum":"96","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"270","wdire":"West","vism":"12.9", "visi":"8.0","pressurem":"1015.2", "pressurei":"29.98","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 101156Z 27003KT 8SM CLR 10/09 A2998 RMK AO2 SLP152 T01000094 10128 20100 58001" },
{
"date": {
"pretty": "4:56 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"10.0", "dewpti":"50.0","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1015.2", "pressurei":"29.98","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 101256Z 28003KT 10SM BKN180 10/10 A2998 RMK AO2 SLP152 T01000100" },
{
"date": {
"pretty": "5:56 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"11.7", "dewpti":"53.1","hum":"100","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"270","wdire":"West","vism":"11.3", "visi":"7.0","pressurem":"1015.5", "pressurei":"29.99","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 101356Z 27004KT 7SM FEW015 SCT180 12/12 A2999 RMK AO2 SLP155 T01170117" },
{
"date": {
"pretty": "6:56 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"11.7", "dewpti":"53.1","hum":"97","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"320","wdire":"NW","vism":"14.5", "visi":"9.0","pressurem":"1015.8", "pressurei":"30.00","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 101456Z 32005KT 9SM FEW011 SCT140 BKN180 12/12 A3000 RMK AO2 SLP158 T01220117 53006" },
{
"date": {
"pretty": "7:27 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "07",
"min": "27",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:27 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "15",
"min": "27",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"11.0", "dewpti":"51.8","hum":"94","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"14.5", "visi":"9.0","pressurem":"1016.1", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 101527Z 29007KT 9SM FEW008 SCT160 BKN200 12/11 A3001" },
{
"date": {
"pretty": "7:56 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"11.7", "dewpti":"53.1","hum":"100","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"310","wdire":"NW","vism":"12.9", "visi":"8.0","pressurem":"1016.3", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 101556Z 31006KT 8SM FEW008 SCT160 BKN200 12/12 A3001 RMK AO2 SLP163 T01170117" },
{
"date": {
"pretty": "8:56 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"11.1", "dewpti":"52.0","hum":"96","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1016.9", "pressurei":"30.03","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 101656Z 00000KT 9SM FEW006 SCT160 BKN200 12/11 A3003 RMK AO2 SLP169 T01170111" },
{
"date": {
"pretty": "9:08 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "09",
"min": "08",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:08 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "17",
"min": "08",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1016.8", "pressurei":"30.03","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 101708Z 00000KT 9SM FEW006 BKN010 BKN200 12/12 A3003 RMK AO2" },
{
"date": {
"pretty": "9:14 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "09",
"min": "14",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:14 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "17",
"min": "14",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1016.8", "pressurei":"30.03","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 101714Z 00000KT 9SM FEW006 SCT010 BKN200 12/12 A3003 RMK AO2" },
{
"date": {
"pretty": "9:56 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.2", "dewpti":"54.0","hum":"96","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"110","wdire":"ESE","vism":"14.5", "visi":"9.0","pressurem":"1017.1", "pressurei":"30.04","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 101756Z 11004KT 9SM FEW008 SCT150 BKN200 13/12 A3004 RMK AO2 SLP171 T01280122 10128 20094 51013" },
{
"date": {
"pretty": "10:56 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"11.7", "dewpti":"53.1","hum":"93","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"70","wdire":"ENE","vism":"11.3", "visi":"7.0","pressurem":"1016.6", "pressurei":"30.02","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 101856Z 07005KT 7SM FEW006 SCT160 BKN200 13/12 A3002 RMK AO2 SLP166 T01280117" },
{
"date": {
"pretty": "11:46 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "11",
"min": "46",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:46 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "19",
"min": "46",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"4.8", "visi":"3.0","pressurem":"1015.8", "pressurei":"30.00","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 101946Z 06004KT 3SM BR SCT004 BKN008 BKN200 12/12 A3000 RMK AO2 SFC VIS 4" },
{
"date": {
"pretty": "11:56 AM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"11.1", "dewpti":"52.0","hum":"96","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"40","wdire":"NE","vism":"4.8", "visi":"3.0","pressurem":"1015.8", "pressurei":"30.00","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 101956Z 04004KT 3SM BR SCT004 BKN008 OVC200 12/11 A3000 RMK AO2 SFC VIS 4 SLP158 T01170111" },
{
"date": {
"pretty": "12:22 PM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "12",
"min": "22",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:22 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "20",
"min": "22",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"4.8", "visi":"3.0","pressurem":"1015.5", "pressurei":"29.99","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 102022Z 00000KT 3SM BR FEW003 SCT006 BKN200 12/12 A2999 RMK AO2" },
{
"date": {
"pretty": "12:56 PM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"11.7", "dewpti":"53.1","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"8.0", "visi":"5.0","pressurem":"1014.9", "pressurei":"29.97","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 102056Z 00000KT 5SM BR FEW006 SCT160 BKN200 12/12 A2997 RMK AO2 SLP149 T01170117 58022" },
{
"date": {
"pretty": "1:56 PM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"40","wdire":"NE","vism":"11.3", "visi":"7.0","pressurem":"1014.4", "pressurei":"29.96","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 102156Z 04003KT 7SM FEW003 BKN200 12/12 A2996" },
{
"date": {
"pretty": "2:56 PM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"12.8", "dewpti":"55.0","hum":"93","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"30","wdire":"NNE","vism":"12.9", "visi":"8.0","pressurem":"1014.3", "pressurei":"29.96","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 102256Z 03003KT 8SM FEW003 BKN200 14/13 A2995 RMK AO2 SLP143 VIS SE 3 T01390128" },
{
"date": {
"pretty": "3:56 PM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.6", "tempi":"60.1","dewptm":"11.7", "dewpti":"53.1","hum":"78","wspdm":"16.7", "wspdi":"10.4","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"14.5", "visi":"9.0","pressurem":"1014.6", "pressurei":"29.96","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 102356Z 28009KT 9SM FEW008 BKN200 16/12 A2996 RMK AO2 SLP146 T01560117 10161 20117 55003" },
{
"date": {
"pretty": "4:56 PM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"11.7", "dewpti":"53.1","hum":"90","wspdm":"18.5", "wspdi":"11.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"16.1", "visi":"10.0","pressurem":"1014.8", "pressurei":"29.97","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 110056Z 29010KT 10SM FEW010 SCT150 BKN200 13/12 A2997 RMK AO2 SLP148 T01330117" },
{
"date": {
"pretty": "5:56 PM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"11.7", "dewpti":"53.1","hum":"93","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"16.1", "visi":"10.0","pressurem":"1015.0", "pressurei":"29.98","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 110156Z 29007KT 10SM FEW010 SCT150 BKN200 13/12 A2998 RMK AO2 SLP150 T01280117" },
{
"date": {
"pretty": "6:56 PM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"11.1", "dewpti":"52.0","hum":"93","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1015.1", "pressurei":"29.98","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 110256Z 28007KT 10SM SCT150 BKN200 12/11 A2998 RMK AO2 SLP151 T01220111 51005" },
{
"date": {
"pretty": "7:56 PM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"12.2", "dewpti":"54.0","hum":"100","wspdm":"18.5", "wspdi":"11.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"16.1", "visi":"10.0","pressurem":"1015.6", "pressurei":"29.99","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 110356Z 29010KT 10SM FEW150 SCT200 12/12 A2999 RMK AO2 SLP156 T01220122" },
{
"date": {
"pretty": "8:56 PM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"11.7", "dewpti":"53.1","hum":"97","wspdm":"16.7", "wspdi":"10.4","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1016.0", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 110456Z 28009KT 10SM FEW150 SCT200 12/12 A3001 RMK AO2 SLP160 T01220117" },
{
"date": {
"pretty": "9:56 PM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"11.1", "dewpti":"52.0","hum":"93","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"260","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1016.2", "pressurei":"30.01","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 110556Z 26006KT 10SM FEW150 SCT200 12/11 A3001 RMK AO2 SLP162 T01220111 10156 20117 51011" },
{
"date": {
"pretty": "10:56 PM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"11.1", "dewpti":"52.0","hum":"96","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1016.4", "pressurei":"30.02","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 110656Z 00000KT 10SM FEW150 SCT200 12/11 A3002 RMK AO2 SLP164 T01170111" },
{
"date": {
"pretty": "11:56 PM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"9.4", "dewpti":"48.9","hum":"96","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"250","wdire":"WSW","vism":"16.1", "visi":"10.0","pressurem":"1016.5", "pressurei":"30.02","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 110756Z 25004KT 10SM SCT150 SCT200 10/09 A3002 RMK AO2 SLP165 T01000094 401610094" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 10, 2015",
"year": "2015",
"mon": "01",
"mday": "10",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"0","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"13", "meantempi":"55","meandewptm":"12", "meandewpti":"53","meanpressurem":"1016", "meanpressurei":"30.00","meanwindspdm":"8", "meanwindspdi":"5","meanwdire":"","meanwdird":"308","meanvism":"13", "meanvisi":"8","humidity":"","maxtempm":"16", "maxtempi":"61","mintempm":"9", "mintempi":"49","maxhumidity":"100","minhumidity":"78","maxdewptm":"13", "maxdewpti":"55","mindewptm":"9", "mindewpti":"49","maxpressurem":"1017", "maxpressurei":"30.04","minpressurem":"1014", "minpressurei":"29.96","maxwspdm":"24", "maxwspdi":"15","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"5", "minvisi":"3","gdegreedays":"4","heatingdegreedays":"10","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"140","monthtodateheatingdegreedaysnormal":"150","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"575","since1julheatingdegreedaysnormal":"1160","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"9.4", "dewpti":"48.9","hum":"92","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"200","wdire":"SSW","vism":"16.1", "visi":"10.0","pressurem":"1016.4", "pressurei":"30.02","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 110856Z 20003KT 10SM FEW150 SCT200 11/09 A3002 RMK AO2 SLP164 T01060094 50002" },
{
"date": {
"pretty": "1:56 AM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"10.0", "dewpti":"50.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1016.4", "pressurei":"30.02","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 110956Z 00000KT 10SM FEW180 SCT200 10/10 A3002 RMK AO2 SLP164 T01000100" },
{
"date": {
"pretty": "2:56 AM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"8.9", "dewpti":"48.0","hum":"93","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"210","wdire":"SSW","vism":"16.1", "visi":"10.0","pressurem":"1016.9", "pressurei":"30.03","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 111056Z 21003KT 10SM FEW180 SCT200 10/09 A3003 RMK AO2 SLP169 T01000089" },
{
"date": {
"pretty": "3:56 AM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"9.4", "dewpti":"48.9","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"240","wdire":"WSW","vism":"16.1", "visi":"10.0","pressurem":"1016.7", "pressurei":"30.03","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 111156Z 24003KT 10SM CLR 09/09 A3003 RMK AO2 SLP167 T00940094 10122 20089 50003" },
{
"date": {
"pretty": "4:56 AM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"8.9", "dewpti":"48.0","hum":"93","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1016.7", "pressurei":"30.03","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 111256Z 00000KT 10SM CLR 10/09 A3003 RMK AO2 SLP167 T01000089" },
{
"date": {
"pretty": "5:56 AM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"8.9", "dewpti":"48.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1016.7", "pressurei":"30.03","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 111356Z 00000KT 10SM FEW014 SCT150 09/09 A3002 RMK AO2 SLP167 T00890089" },
{
"date": {
"pretty": "6:56 AM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"8.3", "dewpti":"46.9","hum":"96","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1017.3", "pressurei":"30.04","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 111456Z 00000KT 10SM FEW010 BKN200 09/08 A3004 RMK AO2 SLP173 T00890083 53006" },
{
"date": {
"pretty": "7:01 AM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "07",
"min": "01",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:01 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "15",
"min": "01",
"tzname": "UTC"
},
"tempm":"9.0", "tempi":"48.2","dewptm":"9.0", "dewpti":"48.2","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1017.2", "pressurei":"30.04","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 111501Z 00000KT 10SM FEW008 BKN010 BKN200 09/09 A3004 RMK AO2" },
{
"date": {
"pretty": "7:56 AM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"10.0", "dewpti":"50.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1018.1", "pressurei":"30.07","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 111556Z 00000KT 9SM FEW007 BKN010 BKN200 10/10 A3007 RMK AO2 SLP181 T01000100" },
{
"date": {
"pretty": "8:56 AM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.0", "dewpti":"50.0","hum":"96","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"100","wdire":"East","vism":"16.1", "visi":"10.0","pressurem":"1018.8", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 111656Z 10004KT 10SM FEW006 BKN010 BKN200 11/10 A3009 RMK AO2 SLP188 T01060100" },
{
"date": {
"pretty": "9:56 AM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"9.4", "dewpti":"48.9","hum":"89","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1019.7", "pressurei":"30.12","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 111756Z 00000KT 8SM FEW006 BKN010 BKN200 11/09 A3011 RMK AO2 SLP197 T01110094 10111 20083 53024" },
{
"date": {
"pretty": "10:56 AM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"11.1", "dewpti":"52.0","hum":"96","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"80","wdire":"East","vism":"9.7", "visi":"6.0","pressurem":"1019.8", "pressurei":"30.12","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 111856Z 08004KT 6SM BR FEW008 BKN012 BKN200 12/11 A3012 RMK AO2 SLP198 T01170111" },
{
"date": {
"pretty": "11:56 AM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"11.1", "dewpti":"52.0","hum":"93","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"Variable","vism":"9.7", "visi":"6.0","pressurem":"1019.3", "pressurei":"30.10","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 111956Z VRB04KT 6SM BR FEW006 BKN014 BKN200 12/11 A3010 RMK AO2 SLP193 T01220111" },
{
"date": {
"pretty": "12:22 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "12",
"min": "22",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:22 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "20",
"min": "22",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"11.0", "dewpti":"51.8","hum":"94","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"80","wdire":"East","vism":"11.3", "visi":"7.0","pressurem":"1019.2", "pressurei":"30.10","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 112022Z 08006KT 7SM FEW006 SCT014 BKN200 12/11 A3010 RMK AO2" },
{
"date": {
"pretty": "12:56 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"11.7", "dewpti":"53.1","hum":"100","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"70","wdire":"ENE","vism":"9.7", "visi":"6.0","pressurem":"1018.9", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 112056Z COR 07005KT 6SM R28R/2000VP6000FT BR FEW003 SCT014 BKN200 12/12 A3009 RMK AO2 SLP189 T01170117 58008" },
{
"date": {
"pretty": "1:06 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "13",
"min": "06",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:06 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "21",
"min": "06",
"tzname": "UTC"
},
"tempm":"11.0", "tempi":"51.8","dewptm":"11.0", "dewpti":"51.8","hum":"100","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"80","wdire":"East","vism":"0.8", "visi":"0.5","pressurem":"1018.8", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 112106Z 08005KT 1/2SM R28R/2200V5500FT FG SCT003 SCT014 BKN200 11/11 A3009 RMK AO2 VIS W-N 7" },
{
"date": {
"pretty": "1:13 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "13",
"min": "13",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:13 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "21",
"min": "13",
"tzname": "UTC"
},
"tempm":"11.0", "tempi":"51.8","dewptm":"11.0", "dewpti":"51.8","hum":"100","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"80","wdire":"East","vism":"0.4", "visi":"0.2","pressurem":"1018.8", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 112113Z 08004KT 1/4SM R28R/1200V5500FT FG FEW001 SCT003 SCT012 BKN200 11/11 A3009 RMK AO2 VIS W-N 7" },
{
"date": {
"pretty": "1:44 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "13",
"min": "44",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:44 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "21",
"min": "44",
"tzname": "UTC"
},
"tempm":"11.0", "tempi":"51.8","dewptm":"11.0", "dewpti":"51.8","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"0.4", "visi":"0.2","pressurem":"1018.8", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 112144Z 06003KT 1/4SM R28R/1000V1800FT FG FEW001 SCT003 BKN010 BKN200 11/11 A3009 RMK AO2 VIS W-N 7" },
{
"date": {
"pretty": "1:56 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.6", "dewpti":"51.1","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"80","wdire":"East","vism":"0.4", "visi":"0.2","pressurem":"1018.7", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 112156Z 08003KT 1/4SM R28R/0700V1800FT FG FEW001 SCT006 BKN010 BKN200 11/11 A3008 RMK AO2 SLP187 VIS W-N 8 T01060106 $" },
{
"date": {
"pretty": "2:48 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "14",
"min": "48",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:48 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "22",
"min": "48",
"tzname": "UTC"
},
"tempm":"11.0", "tempi":"51.8","dewptm":"11.0", "dewpti":"51.8","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1018.8", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 112248Z 00000KT 4SM VCFG FEW003 SCT010 BKN200 11/11 A3009 RMK AO2 VIS E-SE 2 $" },
{
"date": {
"pretty": "2:56 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.6", "dewpti":"51.1","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1018.9", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 112256Z 00000KT 4SM VCFG FEW003 SCT010 BKN200 11/11 A3009 RMK AO2 SLP189 VIS E-S 2 T01060106 $" },
{
"date": {
"pretty": "3:15 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "15",
"min": "15",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:15 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "23",
"min": "15",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"10.0", "dewpti":"50.0","hum":"88","wspdm":"25.9", "wspdi":"16.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"11.3", "visi":"7.0","pressurem":"1018.8", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 112315Z 28014KT 7SM VCFG FEW003 BKN200 12/10 A3009 RMK AO2 VIS E-S 4 $" },
{
"date": {
"pretty": "3:31 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "15",
"min": "31",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:31 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "23",
"min": "31",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"11.0", "dewpti":"51.8","hum":"88","wspdm":"27.8", "wspdi":"17.3","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"12.9", "visi":"8.0","pressurem":"1018.8", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 112331Z 28015KT 8SM FEW003 SCT008 BKN200 13/11 A3009 RMK AO2 WSHFT 2311 $" },
{
"date": {
"pretty": "3:56 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"10.6", "dewpti":"51.1","hum":"84","wspdm":"24.1", "wspdi":"15.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1019.1", "pressurei":"30.10","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 112356Z 28013KT 10SM FEW009 BKN200 13/11 A3009 RMK AO2 WSHFT 2311 SLP191 T01330106 10133 20106 53001 $" },
{
"date": {
"pretty": "4:56 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"11.1", "dewpti":"52.0","hum":"89","wspdm":"18.5", "wspdi":"11.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1019.4", "pressurei":"30.11","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 120056Z 28010KT 10SM FEW010 OVC200 13/11 A3011 RMK AO2 SLP194 BINOVC T01280111 $" },
{
"date": {
"pretty": "5:56 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"11.1", "dewpti":"52.0","hum":"89","wspdm":"18.5", "wspdi":"11.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"270","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1020.0", "pressurei":"30.12","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 120156Z 27010KT 10SM FEW013 SCT018 OVC200 13/11 A3012 RMK AO2 SLP200 BINOVC T01280111 $" },
{
"date": {
"pretty": "6:56 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"11.7", "dewpti":"53.1","hum":"93","wspdm":"14.8", "wspdi":"9.2","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"260","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1020.4", "pressurei":"30.14","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 120256Z 26008KT 10SM FEW014 SCT023 SCT200 13/12 A3013 RMK AO2 SLP204 T01280117 53014 $" },
{
"date": {
"pretty": "7:56 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"11.1", "dewpti":"52.0","hum":"89","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"230","wdire":"SW","vism":"16.1", "visi":"10.0","pressurem":"1020.7", "pressurei":"30.14","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 120356Z 23007KT 10SM FEW015 SCT200 13/11 A3014 RMK AO2 SLP207 T01280111 $" },
{
"date": {
"pretty": "8:56 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"10.6", "dewpti":"51.1","hum":"90","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"210","wdire":"SSW","vism":"16.1", "visi":"10.0","pressurem":"1021.0", "pressurei":"30.15","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 120456Z 21004KT 10SM FEW013 SCT200 12/11 A3015 RMK AO2 SLP210 T01220106 $" },
{
"date": {
"pretty": "9:56 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.0", "dewpti":"50.0","hum":"93","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1021.6", "pressurei":"30.17","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 120556Z 00000KT 10SM SCT200 11/10 A3017 RMK AO2 SLP216 T01110100 10133 20111 53012 $" },
{
"date": {
"pretty": "10:56 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.0", "dewpti":"50.0","hum":"93","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"140","wdire":"SE","vism":"16.1", "visi":"10.0","pressurem":"1021.8", "pressurei":"30.18","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 120656Z 14003KT 10SM SCT200 11/10 A3017 RMK AO2 SLP218 T01110100 $" },
{
"date": {
"pretty": "11:56 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"9.4", "dewpti":"48.9","hum":"92","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1021.8", "pressurei":"30.18","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 120756Z 00000KT 10SM FEW008 11/09 A3018 RMK AO2 SLP218 T01060094 401330083 $" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 11, 2015",
"year": "2015",
"mon": "01",
"mday": "11",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"1","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"11", "meantempi":"52","meandewptm":"10", "meandewpti":"50","meanpressurem":"1019", "meanpressurei":"30.09","meanwindspdm":"6", "meanwindspdi":"4","meanwdire":"","meanwdird":"192","meanvism":"13", "meanvisi":"8","humidity":"","maxtempm":"13", "maxtempi":"56","mintempm":"8", "mintempi":"47","maxhumidity":"100","minhumidity":"86","maxdewptm":"12", "maxdewpti":"53","mindewptm":"8", "mindewpti":"47","maxpressurem":"1022", "maxpressurei":"30.18","minpressurem":"1016", "minpressurei":"30.02","maxwspdm":"32", "maxwspdi":"20","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"0", "minvisi":"0","gdegreedays":"0","heatingdegreedays":"13","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"153","monthtodateheatingdegreedaysnormal":"165","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"588","since1julheatingdegreedaysnormal":"1175","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.6", "dewpti":"51.1","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.2", "pressurei":"30.19","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 120856Z 00000KT 10SM FEW008 11/11 A3019 RMK AO2 SLP222 T01060106 53006 $" },
{
"date": {
"pretty": "1:56 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"9.4", "dewpti":"48.9","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.7", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 120956Z 00000KT 10SM CLR 09/09 A3020 RMK AO2 SLP227 T00940094 $" },
{
"date": {
"pretty": "2:56 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"9.4", "dewpti":"48.9","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.7", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 121056Z 00000KT 10SM CLR 09/09 A3020 RMK AO2 SLP227 T00940094 $" },
{
"date": {
"pretty": "3:56 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"8.9", "dewpti":"48.0","hum":"97","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1023.1", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 121156Z 00000KT 10SM FEW007 09/09 A3021 RMK AO2 SLP231 T00940089 10117 20083 51009 $" },
{
"date": {
"pretty": "4:56 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"8.9", "dewpti":"48.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.8", "pressurei":"30.21","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 121256Z 00000KT 10SM FEW007 09/09 A3020 RMK AO2 SLP228 T00890089 $" },
{
"date": {
"pretty": "5:56 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"10.0", "dewpti":"50.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1023.2", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 121356Z 00000KT 10SM FEW001 SCT008 10/10 A3022 RMK AO2 SLP232 T01000100 $" },
{
"date": {
"pretty": "6:56 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"9.4", "dewpti":"48.9","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1023.4", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 121456Z 00000KT 10SM FEW001 BKN180 09/09 A3022 RMK AO2 SLP234 FG IN GAP W T00940094 53003 $" },
{
"date": {
"pretty": "7:39 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "07",
"min": "39",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:39 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "15",
"min": "39",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"10.0", "dewpti":"50.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1023.2", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 121539Z 00000KT 8SM FEW001 OVC005 10/10 A3022 RMK AO2 $" },
{
"date": {
"pretty": "7:56 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.6", "dewpti":"51.1","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1023.6", "pressurei":"30.23","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 121556Z 00000KT 8SM FEW001 OVC005 11/11 A3023 RMK AO2 SLP236 FG IN GAP W T01060106 $" },
{
"date": {
"pretty": "8:27 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "08",
"min": "27",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:27 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "16",
"min": "27",
"tzname": "UTC"
},
"tempm":"11.0", "tempi":"51.8","dewptm":"11.0", "dewpti":"51.8","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"4.8", "visi":"3.0","pressurem":"1024.3", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 121627Z 00000KT 3SM BR SCT001 OVC005 11/11 A3025 RMK AO2 $" },
{
"date": {
"pretty": "8:42 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "08",
"min": "42",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:42 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "16",
"min": "42",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"10.0", "dewpti":"50.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.4", "visi":"0.2","pressurem":"1024.6", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 121642Z 00000KT 1/4SM R28R/P6000FT FG OVC001 10/10 A3026 RMK AO2" },
{
"date": {
"pretty": "8:56 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.6", "dewpti":"51.1","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.8", "visi":"0.5","pressurem":"1024.7", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 121656Z 00000KT 1/2SM R28R/6000VP6000FT FG OVC001 11/11 A3026 RMK AO2 SLP247 T01060106" },
{
"date": {
"pretty": "9:13 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "09",
"min": "13",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:13 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "17",
"min": "13",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"10.0", "dewpti":"50.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.4", "visi":"0.2","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 121713Z 00000KT 1/4SM R28R/2000V5000FT FG OVC001 10/10 A3027 RMK AO2" },
{
"date": {
"pretty": "9:30 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "09",
"min": "30",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:30 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "17",
"min": "30",
"tzname": "UTC"
},
"tempm":"11.0", "tempi":"51.8","dewptm":"11.0", "dewpti":"51.8","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.2", "visi":"0.1","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 121730Z 00000KT 1/8SM R28R/1400V2200FT FG VV002 11/11 A3027 RMK AO2" },
{
"date": {
"pretty": "9:56 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"10.0", "dewpti":"50.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.2", "visi":"0.1","pressurem":"1025.2", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 121756Z 00000KT 1/8SM R28R/1000V1200FT FG VV001 10/10 A3028 RMK AO2 SLP252 T01000100 10106 20083 53018" },
{
"date": {
"pretty": "10:56 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"10.0", "dewpti":"50.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.4", "visi":"0.2","pressurem":"1025.1", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 121856Z 00000KT 1/4SM R28R/1200V1400FT FG OVC002 10/10 A3027 RMK AO2 SLP251 T01000100 $" },
{
"date": {
"pretty": "11:33 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "11",
"min": "33",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:33 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "19",
"min": "33",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"10.0", "dewpti":"50.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.4", "visi":"0.2","pressurem":"1024.6", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 121933Z 00000KT 1/4SM R28R/1600V3500FT FG SCT001 BKN180 10/10 A3026 RMK AO2 $" },
{
"date": {
"pretty": "11:56 AM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.6", "dewpti":"51.1","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"50","wdire":"NE","vism":"9.7", "visi":"6.0","pressurem":"1024.1", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 121956Z 05003KT 6SM R28R/2000VP6000FT BR SCT001 BKN180 11/11 A3024 RMK AO2 SLP241 VIS NE E 1 1/2SM T01060106 $" },
{
"date": {
"pretty": "12:56 PM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.6", "dewpti":"51.1","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1023.2", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 122056Z 00000KT 8SM FEW002 SCT180 11/11 A3022 RMK AO2 SLP232 T01060106 58019 $" },
{
"date": {
"pretty": "1:56 PM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"12.2", "dewpti":"54.0","hum":"93","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"80","wdire":"East","vism":"14.5", "visi":"9.0","pressurem":"1022.9", "pressurei":"30.21","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 122156Z 08004KT 9SM FEW002 SCT180 13/12 A3021 RMK AO2 SLP229 T01330122 $" },
{
"date": {
"pretty": "2:56 PM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"11.1", "dewpti":"52.0","hum":"83","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.8", "pressurei":"30.21","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 122256Z 00000KT 10SM FEW007 SCT200 14/11 A3021 RMK AO2 SLP228 T01390111 $" },
{
"date": {
"pretty": "3:56 PM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"16.1", "tempi":"61.0","dewptm":"11.7", "dewpti":"53.1","hum":"75","wspdm":"18.5", "wspdi":"11.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1022.7", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 122356Z 28010KT 10SM FEW007 SCT200 16/12 A3020 RMK AO2 SLP227 T01610117 10167 20100 56005" },
{
"date": {
"pretty": "4:56 PM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"12.8", "dewpti":"55.0","hum":"90","wspdm":"25.9", "wspdi":"16.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1022.7", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 130056Z 28014KT 10SM FEW008 SCT200 14/13 A3020 RMK AO2 SLP227 T01440128" },
{
"date": {
"pretty": "5:56 PM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"12.8", "dewpti":"55.0","hum":"97","wspdm":"27.8", "wspdi":"17.3","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1022.7", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 130156Z 28015KT 10SM FEW007 BKN200 13/13 A3020 RMK AO2 SLP227 T01330128" },
{
"date": {
"pretty": "6:56 PM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"12.8", "dewpti":"55.0","hum":"97","wspdm":"25.9", "wspdi":"16.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1022.5", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 130256Z 28014KT 10SM FEW007 BKN200 13/13 A3020 RMK AO2 SLP225 T01330128 58002" },
{
"date": {
"pretty": "7:56 PM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.8", "dewpti":"55.0","hum":"100","wspdm":"24.1", "wspdi":"15.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1022.5", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 130356Z 28013KT 10SM FEW008 SCT015 BKN200 13/13 A3020 RMK AO2 SLP225 T01280128" },
{
"date": {
"pretty": "8:56 PM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.2", "dewpti":"54.0","hum":"96","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"16.1", "visi":"10.0","pressurem":"1022.6", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 130456Z 29007KT 10SM FEW009 SCT200 13/12 A3020 RMK AO2 SLP226 T01280122" },
{
"date": {
"pretty": "9:56 PM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"11.7", "dewpti":"53.1","hum":"97","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"320","wdire":"NW","vism":"16.1", "visi":"10.0","pressurem":"1022.7", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 130556Z 32003KT 10SM FEW200 12/12 A3020 RMK AO2 SLP227 T01220117 10161 20122 53001" },
{
"date": {
"pretty": "10:56 PM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.0", "dewpti":"50.0","hum":"93","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.7", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 130656Z 00000KT 10SM CLR 11/10 A3020 RMK AO2 SLP227 T01110100" },
{
"date": {
"pretty": "11:56 PM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.6", "dewpti":"51.1","hum":"97","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1022.7", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 130756Z 28004KT 10SM CLR 11/11 A3020 RMK AO2 SLP227 T01110106 401670083" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 12, 2015",
"year": "2015",
"mon": "01",
"mday": "12",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"1","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"13", "meantempi":"55","meandewptm":"11", "meandewpti":"51","meanpressurem":"1023", "meanpressurei":"30.22","meanwindspdm":"7", "meanwindspdi":"4","meanwdire":"","meanwdird":"297","meanvism":"12", "meanvisi":"7","humidity":"","maxtempm":"17", "maxtempi":"62","mintempm":"8", "mintempi":"47","maxhumidity":"100","minhumidity":"78","maxdewptm":"13", "maxdewpti":"55","mindewptm":"9", "mindewpti":"48","maxpressurem":"1025", "maxpressurei":"30.28","minpressurem":"1022", "minpressurei":"30.19","maxwspdm":"29", "maxwspdi":"18","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"0", "minvisi":"0","gdegreedays":"4","heatingdegreedays":"10","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"163","monthtodateheatingdegreedaysnormal":"180","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"598","since1julheatingdegreedaysnormal":"1190","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.6", "dewpti":"51.1","hum":"97","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.4", "pressurei":"30.19","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 130856Z 00000KT 10SM CLR 11/11 A3019 RMK AO2 SLP224 T01110106 58003" },
{
"date": {
"pretty": "1:56 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"9.4", "dewpti":"48.9","hum":"96","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.5", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 130956Z 00000KT 10SM CLR 10/09 A3020 RMK AO2 SLP225 T01000094" },
{
"date": {
"pretty": "2:56 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"9.4", "dewpti":"48.9","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.8", "pressurei":"30.21","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 131056Z 00000KT 10SM FEW004 09/09 A3020 RMK AO2 SLP228 T00940094" },
{
"date": {
"pretty": "3:56 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"8.9", "dewpti":"48.0","hum":"97","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.4", "pressurei":"30.19","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 131156Z 00000KT 10SM FEW005 09/09 A3019 RMK AO2 SLP224 T00940089 10122 20089 50001" },
{
"date": {
"pretty": "4:56 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.3", "tempi":"46.9","dewptm":"8.3", "dewpti":"46.9","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.3", "pressurei":"30.19","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 131256Z 00000KT 10SM FEW001 08/08 A3019 RMK AO2 SLP223 T00830083" },
{
"date": {
"pretty": "5:56 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"8.9", "dewpti":"48.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.2", "pressurei":"30.19","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 131356Z 00000KT 10SM FEW001 09/09 A3019 RMK AO2 SLP222 T00890089" },
{
"date": {
"pretty": "6:56 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"8.9", "dewpti":"48.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.5", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 131456Z 00000KT 10SM R28R/1200V1600FT FEW001 09/09 A3020 RMK AO2 SLP225 PATCHY FOG NE VIS NE 3/4 T00890089 53001" },
{
"date": {
"pretty": "7:32 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "07",
"min": "32",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:32 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "15",
"min": "32",
"tzname": "UTC"
},
"tempm":"9.0", "tempi":"48.2","dewptm":"9.0", "dewpti":"48.2","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"0.4", "visi":"0.2","pressurem":"1022.6", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 131532Z 01003KT 1/4SM R28R/1200V2800FT FG BKN001 09/09 A3020 RMK AO2" },
{
"date": {
"pretty": "7:42 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "07",
"min": "42",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:42 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "15",
"min": "42",
"tzname": "UTC"
},
"tempm":"9.0", "tempi":"48.2","dewptm":"9.0", "dewpti":"48.2","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.4", "visi":"0.2","pressurem":"1022.6", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 131542Z 00000KT M1/4SM R28R/1000V1400FT FG BKN001 09/09 A3020 RMK AO2" },
{
"date": {
"pretty": "7:46 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "07",
"min": "46",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:46 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "15",
"min": "46",
"tzname": "UTC"
},
"tempm":"9.0", "tempi":"48.2","dewptm":"9.0", "dewpti":"48.2","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.2", "visi":"0.1","pressurem":"1022.6", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 131546Z 00000KT 1/8SM R28R/0800V1200FT FG VV001 09/09 A3020 RMK AO2" },
{
"date": {
"pretty": "7:56 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"8.9", "dewpti":"48.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.2", "visi":"0.1","pressurem":"1022.6", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 131556Z 00000KT 1/8SM R28R/0800V1000FT FG VV001 09/09 A3020 RMK AO2 SLP226 T00890089" },
{
"date": {
"pretty": "8:56 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"8.9", "dewpti":"48.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.4", "visi":"0.2","pressurem":"1023.1", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 131656Z 00000KT 1/4SM R28R/0600V0700FT FG BKN001 09/09 A3021 RMK AO2 SLP231 VIS S 10 VIS W N E 1/4 T00890089" },
{
"date": {
"pretty": "9:31 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "09",
"min": "31",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:31 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "17",
"min": "31",
"tzname": "UTC"
},
"tempm":"9.0", "tempi":"48.2","dewptm":"9.0", "dewpti":"48.2","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"1.6", "visi":"1.0","pressurem":"1023.2", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 131731Z 00000KT 1SM R28R/1600VP6000FT BR SCT001 09/09 A3022 RMK AO2 VIS S10 VIS W N E 1 $" },
{
"date": {
"pretty": "9:38 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "09",
"min": "38",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:38 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "17",
"min": "38",
"tzname": "UTC"
},
"tempm":"9.0", "tempi":"48.2","dewptm":"9.0", "dewpti":"48.2","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1023.2", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 131738Z 00000KT 4SM BR FEW001 09/09 A3022 RMK AO2 VIS S10 VIS W N E 1 $" },
{
"date": {
"pretty": "9:56 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"10.0", "dewpti":"50.0","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"40","wdire":"NE","vism":"6.4", "visi":"4.0","pressurem":"1023.3", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 131756Z 04003KT 4SM BR FEW001 10/10 A3022 RMK AO2 SLP233 VIS S10 VIS W N E 1 T01000100 10100 20078 53008 $" },
{
"date": {
"pretty": "10:56 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.6", "dewpti":"51.1","hum":"97","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1023.1", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 131856Z COR 00000KT 8SM BR FEW001 11/11 A3021 RMK AO2 SLP231 T01110106 $" },
{
"date": {
"pretty": "11:56 AM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"10.6", "dewpti":"51.1","hum":"78","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1021.8", "pressurei":"30.18","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 131956Z 01003KT 10SM CLR 14/11 A3018 RMK AO2 SLP218 T01440106 $" },
{
"date": {
"pretty": "12:56 PM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"16.7", "tempi":"62.1","dewptm":"6.7", "dewpti":"44.1","hum":"52","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1021.0", "pressurei":"30.15","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 132056Z 00000KT 10SM CLR 17/07 A3015 RMK AO2 SLP210 T01670067 58023 $" },
{
"date": {
"pretty": "1:56 PM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"17.2", "tempi":"63.0","dewptm":"6.1", "dewpti":"43.0","hum":"48","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1020.4", "pressurei":"30.14","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 132156Z 00000KT 10SM CLR 17/06 A3013 RMK AO2 SLP204 T01720061 $" },
{
"date": {
"pretty": "2:56 PM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"17.2", "tempi":"63.0","dewptm":"6.1", "dewpti":"43.0","hum":"48","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1019.9", "pressurei":"30.12","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 132256Z 00000KT 10SM CLR 17/06 A3012 RMK AO2 SLP199 T01720061 $" },
{
"date": {
"pretty": "3:56 PM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"17.2", "tempi":"63.0","dewptm":"6.1", "dewpti":"43.0","hum":"48","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1019.9", "pressurei":"30.12","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 132356Z 00000KT 10SM FEW200 17/06 A3012 RMK AO2 SLP199 T01720061 10178 20100 56011 $" },
{
"date": {
"pretty": "4:56 PM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"16.7", "tempi":"62.1","dewptm":"6.1", "dewpti":"43.0","hum":"50","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"330","wdire":"NNW","vism":"16.1", "visi":"10.0","pressurem":"1020.1", "pressurei":"30.13","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 140056Z 33004KT 10SM FEW200 17/06 A3013 RMK AO2 SLP201 T01670061" },
{
"date": {
"pretty": "5:56 PM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"8.3", "dewpti":"46.9","hum":"67","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"70","wdire":"ENE","vism":"16.1", "visi":"10.0","pressurem":"1020.4", "pressurei":"30.14","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 140156Z 07004KT 10SM FEW200 14/08 A3014 RMK AO2 SLP204 T01440083" },
{
"date": {
"pretty": "6:56 PM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"10.0", "dewpti":"50.0","hum":"83","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"270","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1020.6", "pressurei":"30.14","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 140256Z 27003KT 10SM CLR 13/10 A3014 RMK AO2 SLP206 T01280100 51007" },
{
"date": {
"pretty": "7:56 PM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"7.8", "dewpti":"46.0","hum":"72","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"140","wdire":"SE","vism":"16.1", "visi":"10.0","pressurem":"1020.2", "pressurei":"30.13","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 140356Z 14004KT 10SM CLR 13/08 A3013 RMK AO2 SLP202 T01280078" },
{
"date": {
"pretty": "8:56 PM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"5.6", "dewpti":"42.1","hum":"64","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1020.2", "pressurei":"30.13","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 140456Z 00000KT 10SM CLR 12/06 A3013 RMK AO2 SLP202 T01220056" },
{
"date": {
"pretty": "9:56 PM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"6.7", "dewpti":"44.1","hum":"69","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1020.7", "pressurei":"30.14","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 140556Z 00000KT 10SM CLR 12/07 A3014 RMK AO2 SLP207 T01220067 10178 20117 53001" },
{
"date": {
"pretty": "10:56 PM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"6.1", "dewpti":"43.0","hum":"71","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1021.0", "pressurei":"30.15","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 140656Z 00000KT 10SM CLR 11/06 A3015 RMK AO2 SLP210 T01110061" },
{
"date": {
"pretty": "11:56 PM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"7.2", "dewpti":"45.0","hum":"77","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"220","wdire":"SW","vism":"16.1", "visi":"10.0","pressurem":"1021.1", "pressurei":"30.16","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 140756Z 22003KT 10SM CLR 11/07 A3016 RMK AO2 SLP211 T01110072 401780078" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 13, 2015",
"year": "2015",
"mon": "01",
"mday": "13",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"1","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"13", "meantempi":"55","meandewptm":"8", "meandewpti":"47","meanpressurem":"1022", "meanpressurei":"30.17","meanwindspdm":"2", "meanwindspdi":"1","meanwdire":"","meanwdird":"10","meanvism":"12", "meanvisi":"8","humidity":"","maxtempm":"18", "maxtempi":"64","mintempm":"8", "mintempi":"46","maxhumidity":"100","minhumidity":"48","maxdewptm":"11", "maxdewpti":"51","mindewptm":"6", "mindewpti":"42","maxpressurem":"1023", "maxpressurei":"30.22","minpressurem":"1020", "minpressurei":"30.12","maxwspdm":"13", "maxwspdi":"8","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"0", "minvisi":"0","gdegreedays":"5","heatingdegreedays":"10","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"173","monthtodateheatingdegreedaysnormal":"195","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"608","since1julheatingdegreedaysnormal":"1205","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"8.3", "dewpti":"46.9","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1021.3", "pressurei":"30.16","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 140856Z 00000KT 10SM CLR 11/08 A3016 RMK AO2 SLP213 T01060083 51006" },
{
"date": {
"pretty": "1:56 AM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"5.0", "dewpti":"41.0","hum":"77","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1021.8", "pressurei":"30.18","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 140956Z 00000KT 10SM CLR 09/05 A3018 RMK AO2 SLP218 T00890050" },
{
"date": {
"pretty": "2:56 AM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"7.8", "tempi":"46.0","dewptm":"5.6", "dewpti":"42.1","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1021.9", "pressurei":"30.18","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 141056Z 00000KT 10SM CLR 08/06 A3018 RMK AO2 SLP219 T00780056" },
{
"date": {
"pretty": "3:56 AM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"6.7", "dewpti":"44.1","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1021.8", "pressurei":"30.18","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 141156Z 00000KT 10SM CLR 09/07 A3018 RMK AO2 SLP218 T00890067 10128 20072 50004" },
{
"date": {
"pretty": "4:56 AM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.3", "tempi":"46.9","dewptm":"6.7", "dewpti":"44.1","hum":"90","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"170","wdire":"South","vism":"16.1", "visi":"10.0","pressurem":"1021.7", "pressurei":"30.17","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 141256Z 17003KT 10SM CLR 08/07 A3017 RMK AO2 SLP217 T00830067" },
{
"date": {
"pretty": "5:56 AM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"6.7", "tempi":"44.1","dewptm":"5.0", "dewpti":"41.0","hum":"89","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.1", "pressurei":"30.19","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 141356Z 00000KT 10SM CLR 07/05 A3019 RMK AO2 SLP221 T00670050" },
{
"date": {
"pretty": "6:56 AM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"7.8", "tempi":"46.0","dewptm":"5.6", "dewpti":"42.1","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.6", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 141456Z 00000KT 10SM FEW200 08/06 A3020 RMK AO2 SLP226 T00780056 53008" },
{
"date": {
"pretty": "7:56 AM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.3", "tempi":"46.9","dewptm":"6.7", "dewpti":"44.1","hum":"90","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1023.0", "pressurei":"30.21","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 141556Z 00000KT 10SM FEW200 08/07 A3021 RMK AO2 SLP230 T00830067" },
{
"date": {
"pretty": "8:56 AM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"7.8", "dewpti":"46.0","hum":"83","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1023.6", "pressurei":"30.23","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 141656Z 00000KT 10SM FEW200 11/08 A3023 RMK AO2 SLP236 T01060078" },
{
"date": {
"pretty": "9:56 AM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"7.2", "dewpti":"45.0","hum":"72","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"80","wdire":"East","vism":"16.1", "visi":"10.0","pressurem":"1024.3", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 141756Z 08003KT 10SM FEW200 12/07 A3025 RMK AO2 SLP243 T01220072 10122 20061 53017" },
{
"date": {
"pretty": "10:56 AM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"7.2", "dewpti":"45.0","hum":"72","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"70","wdire":"ENE","vism":"16.1", "visi":"10.0","pressurem":"1024.4", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 141856Z 07004KT 10SM BKN200 12/07 A3025 RMK AO2 SLP244 T01220072" },
{
"date": {
"pretty": "11:56 AM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"7.8", "dewpti":"46.0","hum":"72","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1023.5", "pressurei":"30.23","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 141956Z 00000KT 9SM BKN200 13/08 A3023 RMK AO2 SLP235 T01280078" },
{
"date": {
"pretty": "12:56 PM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"8.9", "dewpti":"48.0","hum":"75","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"12.9", "visi":"8.0","pressurem":"1022.7", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 142056Z 06003KT 8SM FEW008 BKN200 13/09 A3020 RMK AO2 SLP227 T01330089 58016" },
{
"date": {
"pretty": "1:56 PM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"8.9", "dewpti":"48.0","hum":"72","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1022.0", "pressurei":"30.18","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 142156Z 00000KT 8SM FEW008 BKN200 14/09 A3018 RMK AO2 SLP220 T01390089" },
{
"date": {
"pretty": "2:56 PM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"9.4", "dewpti":"48.9","hum":"72","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1021.9", "pressurei":"30.18","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 142256Z 00000KT 8SM BKN200 14/09 A3018 RMK AO2 SLP219 T01440094" },
{
"date": {
"pretty": "3:56 PM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"11.7", "dewpti":"53.1","hum":"87","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1022.4", "pressurei":"30.19","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 142356Z 01003KT 8SM BKN200 14/12 A3019 RMK AO2 SLP224 T01390117 10144 20122 55003" },
{
"date": {
"pretty": "4:56 PM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"8.9", "dewpti":"48.0","hum":"72","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1023.0", "pressurei":"30.21","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 150056Z 00000KT 8SM BKN200 14/09 A3021 RMK AO2 SLP230 T01390089" },
{
"date": {
"pretty": "5:56 PM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"10.6", "dewpti":"51.1","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1023.4", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 150156Z 00000KT 7SM BKN200 13/11 A3022 RMK AO2 SLP234 T01280106" },
{
"date": {
"pretty": "6:56 PM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"10.6", "dewpti":"51.1","hum":"86","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"11.3", "visi":"7.0","pressurem":"1023.6", "pressurei":"30.23","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 150256Z 06007KT 7SM SCT200 13/11 A3023 RMK AO2 SLP236 T01280106 51013" },
{
"date": {
"pretty": "7:56 PM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"9.4", "dewpti":"48.9","hum":"83","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1024.3", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 150356Z 00000KT 7SM SCT200 12/09 A3025 RMK AO2 SLP243 T01220094" },
{
"date": {
"pretty": "8:56 PM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"9.4", "dewpti":"48.9","hum":"83","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1024.7", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 150456Z 00000KT 7SM SCT200 12/09 A3026 RMK AO2 SLP247 T01220094" },
{
"date": {
"pretty": "9:56 PM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"9.4", "dewpti":"48.9","hum":"86","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"80","wdire":"East","vism":"8.0", "visi":"5.0","pressurem":"1025.4", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 150556Z 08004KT 5SM BR SCT200 12/09 A3028 RMK AO2 SLP254 T01170094 10139 20117 52018" },
{
"date": {
"pretty": "10:56 PM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"10.6", "dewpti":"51.1","hum":"90","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"50","wdire":"NE","vism":"9.7", "visi":"6.0","pressurem":"1025.7", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 150656Z 05004KT 6SM BR SCT200 12/11 A3029 RMK AO2 SLP257 T01220106" },
{
"date": {
"pretty": "11:56 PM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"10.0", "dewpti":"50.0","hum":"89","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"8.0", "visi":"5.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 150756Z 09003KT 5SM BR SCT200 12/10 A3027 RMK AO2 SLP249 T01170100 401440061" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 14, 2015",
"year": "2015",
"mon": "01",
"mday": "14",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"0","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"11", "meantempi":"51","meandewptm":"8", "meandewpti":"47","meanpressurem":"1023", "meanpressurei":"30.22","meanwindspdm":"3", "meanwindspdi":"2","meanwdire":"","meanwdird":"71","meanvism":"14", "meanvisi":"8","humidity":"","maxtempm":"14", "maxtempi":"58","mintempm":"6", "mintempi":"43","maxhumidity":"93","minhumidity":"71","maxdewptm":"12", "maxdewpti":"53","mindewptm":"5", "mindewpti":"41","maxpressurem":"1026", "maxpressurei":"30.29","minpressurem":"1021", "minpressurei":"30.16","maxwspdm":"14", "maxwspdi":"9","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"8", "minvisi":"5","gdegreedays":"0","heatingdegreedays":"14","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"187","monthtodateheatingdegreedaysnormal":"210","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"622","since1julheatingdegreedaysnormal":"1220","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.0", "dewpti":"50.0","hum":"96","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"8.0", "visi":"5.0","pressurem":"1025.3", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 150856Z 00000KT 5SM BR SCT200 11/10 A3028 RMK AO2 SLP253 T01060100 55001" },
{
"date": {
"pretty": "1:56 AM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"8.3", "dewpti":"46.9","hum":"96","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"160","wdire":"SSE","vism":"6.4", "visi":"4.0","pressurem":"1025.3", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 150956Z 16004KT 4SM BR CLR 09/08 A3028 RMK AO2 SLP253 T00890083" },
{
"date": {
"pretty": "2:56 AM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"7.8", "dewpti":"46.0","hum":"93","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1025.5", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 151056Z 00000KT 4SM BR CLR 09/08 A3029 RMK AO2 SLP255 T00890078" },
{
"date": {
"pretty": "3:56 AM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"7.8", "tempi":"46.0","dewptm":"6.7", "dewpti":"44.1","hum":"93","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1025.2", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 151156Z 00000KT 4SM BR CLR 08/07 A3028 RMK AO2 SLP252 T00780067 10122 20072 58001" },
{
"date": {
"pretty": "4:56 AM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.3", "tempi":"46.9","dewptm":"7.8", "dewpti":"46.0","hum":"97","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"220","wdire":"SW","vism":"6.4", "visi":"4.0","pressurem":"1025.0", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 151256Z 22003KT 4SM BR CLR 08/08 A3027 RMK AO2 SLP250 T00830078" },
{
"date": {
"pretty": "5:56 AM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"7.8", "tempi":"46.0","dewptm":"7.8", "dewpti":"46.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1025.0", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 151356Z 00000KT 4SM BR FEW200 08/08 A3027 RMK AO2 SLP250 T00780078" },
{
"date": {
"pretty": "6:56 AM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.3", "tempi":"46.9","dewptm":"7.2", "dewpti":"45.0","hum":"93","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"4.8", "visi":"3.0","pressurem":"1025.6", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 151456Z 00000KT 3SM BR FEW001 BKN180 08/07 A3029 RMK AO2 SLP256 T00830072 53004" },
{
"date": {
"pretty": "7:56 AM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.3", "tempi":"46.9","dewptm":"8.3", "dewpti":"46.9","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"160","wdire":"SSE","vism":"4.8", "visi":"3.0","pressurem":"1025.5", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 151556Z 16003KT 3SM BR FEW001 BKN180 08/08 A3029 RMK AO2 SLP255 T00830083" },
{
"date": {
"pretty": "8:56 AM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.0", "tempi":"51.8","dewptm":"9.0", "dewpti":"48.2","hum":"88","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"4.8", "visi":"3.0","pressurem":"1026.6", "pressurei":"30.32","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 151656Z 00000KT 3SM BR FEW001 BKN180 11/09 A3032" },
{
"date": {
"pretty": "9:56 AM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.6", "dewpti":"51.1","hum":"97","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"120","wdire":"ESE","vism":"4.0", "visi":"2.5","pressurem":"1026.9", "pressurei":"30.33","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 151756Z 12003KT 2 1/2SM BR FEW001 SCT007 OVC180 11/11 A3033 RMK AO2 SLP269 T01110106 10111 20072 53014" },
{
"date": {
"pretty": "10:56 AM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"9.4", "dewpti":"48.9","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"4.8", "visi":"3.0","pressurem":"1027.3", "pressurei":"30.34","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 151856Z 00000KT 3SM BR FEW001 BKN180 12/09 A3034 RMK AO2 SLP273 T01170094" },
{
"date": {
"pretty": "11:56 AM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"9.4", "dewpti":"48.9","hum":"83","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1026.2", "pressurei":"30.31","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Haze","icon":"hazy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 151956Z 00000KT 4SM HZ FEW001 BKN180 12/09 A3031 RMK AO2 SLP262 T01220094" },
{
"date": {
"pretty": "12:56 PM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"10.0", "dewpti":"50.0","hum":"83","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1024.8", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Haze","icon":"hazy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 152056Z 01003KT 4SM HZ FEW001 BKN180 13/10 A3027 RMK AO2 SLP248 T01280100 58021" },
{
"date": {
"pretty": "1:56 PM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"11.1", "dewpti":"52.0","hum":"87","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1024.5", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 152156Z 01004KT 4SM BR FEW001 BKN180 13/11 A3025 RMK AO2 SLP245 T01330111" },
{
"date": {
"pretty": "2:56 PM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"10.6", "dewpti":"51.1","hum":"81","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"360","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1024.6", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Haze","icon":"hazy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 152256Z 36005KT 4SM HZ FEW001 OVC180 14/11 A3026 RMK AO2 SLP246 BINOVC T01390106" },
{
"date": {
"pretty": "3:56 PM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"9.4", "dewpti":"48.9","hum":"72","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1024.4", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Haze","icon":"hazy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 152356Z 00000KT 4SM HZ FEW001 OVC180 14/09 A3025 RMK AO2 SLP244 T01440094 10144 20111 56004" },
{
"date": {
"pretty": "4:56 PM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"9.4", "dewpti":"48.9","hum":"72","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"140","wdire":"SE","vism":"8.0", "visi":"5.0","pressurem":"1024.2", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Haze","icon":"hazy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 160056Z 14003KT 5SM HZ OVC180 14/09 A3025 RMK AO2 SLP242 T01440094" },
{
"date": {
"pretty": "5:56 PM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"8.9", "dewpti":"48.0","hum":"70","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"180","wdire":"South","vism":"11.3", "visi":"7.0","pressurem":"1024.2", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 160156Z 18003KT 7SM OVC180 14/09 A3025 RMK AO2 SLP242 T01440089" },
{
"date": {
"pretty": "6:56 PM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"11.7", "dewpti":"53.1","hum":"93","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"8.0", "visi":"5.0","pressurem":"1024.6", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 160256Z 01004KT 5SM BR OVC180 13/12 A3026 RMK AO2 SLP246 T01280117 53001" },
{
"date": {
"pretty": "7:56 PM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"11.1", "dewpti":"52.0","hum":"89","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"9.7", "visi":"6.0","pressurem":"1024.1", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 160356Z 00000KT 6SM BR OVC180 13/11 A3025 RMK AO2 SLP241 T01280111" },
{
"date": {
"pretty": "8:56 PM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"10.0", "dewpti":"50.0","hum":"80","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"11.3", "visi":"7.0","pressurem":"1025.0", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 160456Z 28004KT 7SM OVC180 13/10 A3027 RMK AO2 SLP250 T01330100" },
{
"date": {
"pretty": "9:56 PM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"10.6", "dewpti":"51.1","hum":"84","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1025.2", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 160556Z 00000KT 7SM OVC180 13/11 A3028 RMK AO2 SLP252 T01330106 10150 20122 53006" },
{
"date": {
"pretty": "10:56 PM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"10.6", "dewpti":"51.1","hum":"90","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"70","wdire":"ENE","vism":"11.3", "visi":"7.0","pressurem":"1025.1", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 160656Z 07003KT 7SM SCT180 12/11 A3027 RMK AO2 SLP251 T01220106" },
{
"date": {
"pretty": "11:56 PM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"10.0", "dewpti":"50.0","hum":"89","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"150","wdire":"SSE","vism":"11.3", "visi":"7.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 160756Z 15004KT 7SM SCT180 12/10 A3027 RMK AO2 SLP249 T01170100 401500072" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 15, 2015",
"year": "2015",
"mon": "01",
"mday": "15",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"0","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"11", "meantempi":"52","meandewptm":"9", "meandewpti":"49","meanpressurem":"1025", "meanpressurei":"30.28","meanwindspdm":"4", "meanwindspdi":"2","meanwdire":"","meanwdird":"117","meanvism":"7", "meanvisi":"5","humidity":"","maxtempm":"15", "maxtempi":"59","mintempm":"7", "mintempi":"45","maxhumidity":"100","minhumidity":"72","maxdewptm":"12", "maxdewpti":"53","mindewptm":"7", "mindewpti":"44","maxpressurem":"1027", "maxpressurei":"30.34","minpressurem":"1024", "minpressurei":"30.25","maxwspdm":"21", "maxwspdi":"13","minwspdm":"0", "minwspdi":"0","maxvism":"11", "maxvisi":"7","minvism":"3", "minvisi":"2","gdegreedays":"2","heatingdegreedays":"13","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"200","monthtodateheatingdegreedaysnormal":"225","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"635","since1julheatingdegreedaysnormal":"1235","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"9.4", "dewpti":"48.9","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"9.7", "visi":"6.0","pressurem":"1024.5", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 160856Z 00000KT 6SM BR SCT180 12/09 A3026 RMK AO2 SLP245 T01170094 58006" },
{
"date": {
"pretty": "1:56 AM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"8.9", "dewpti":"48.0","hum":"93","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"270","wdire":"West","vism":"11.3", "visi":"7.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 160956Z 27003KT 7SM FEW180 10/09 A3027 RMK AO2 SLP249 T01000089" },
{
"date": {
"pretty": "2:56 AM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"9.4", "dewpti":"48.9","hum":"92","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1024.5", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 161056Z 00000KT 7SM CLR 11/09 A3026 RMK AO2 SLP245 T01060094" },
{
"date": {
"pretty": "3:56 AM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"8.9", "dewpti":"48.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1024.0", "pressurei":"30.24","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 161156Z 00000KT 7SM SCT180 09/09 A3024 RMK AO2 SLP240 T00890089 10133 20089 58005" },
{
"date": {
"pretty": "4:56 AM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"8.9", "dewpti":"48.0","hum":"97","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1023.9", "pressurei":"30.24","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 161256Z 00000KT 7SM SCT150 09/09 A3024 RMK AO2 SLP239 T00940089" },
{
"date": {
"pretty": "5:56 AM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.0", "tempi":"48.2","dewptm":"9.0", "dewpti":"48.2","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"9.7", "visi":"6.0","pressurem":"1023.9", "pressurei":"30.24","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 161356Z 00000KT 6SM BR FEW032 BKN150 09/09 A3024" },
{
"date": {
"pretty": "6:56 AM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.6", "dewpti":"51.1","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"9.7", "visi":"6.0","pressurem":"1024.6", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 161456Z 00000KT 6SM BR FEW011 BKN030 BKN200 11/11 A3026 RMK AO2 SLP246 T01060106 53006" },
{
"date": {
"pretty": "7:26 AM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "07",
"min": "26",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:26 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "15",
"min": "26",
"tzname": "UTC"
},
"tempm":"11.0", "tempi":"51.8","dewptm":"11.0", "dewpti":"51.8","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"300","wdire":"WNW","vism":"9.7", "visi":"6.0","pressurem":"1024.6", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 161526Z 30003KT 6SM BR FEW010 BKN028 BKN200 11/11 A3026 RMK AO2" },
{
"date": {
"pretty": "7:56 AM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.6", "dewpti":"51.1","hum":"97","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1024.8", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 161556Z 00000KT 4SM BR FEW010 BKN026 BKN200 11/11 A3026 RMK AO2 SLP248 T01110106" },
{
"date": {
"pretty": "8:56 AM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"10.6", "dewpti":"51.1","hum":"93","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1025.3", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 161656Z 00000KT 4SM BR FEW010 BKN023 BKN200 12/11 A3028 RMK AO2 SLP253 T01170106" },
{
"date": {
"pretty": "9:56 AM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"11.1", "dewpti":"52.0","hum":"89","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"6.4", "visi":"4.0","pressurem":"1025.5", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 161756Z 09003KT 4SM BR FEW013 BKN016 OVC200 13/11 A3029 RMK AO2 SLP255 T01280111 10128 20089 53009" },
{
"date": {
"pretty": "10:30 AM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "10",
"min": "30",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:30 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "18",
"min": "30",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"100","wdire":"East","vism":"6.4", "visi":"4.0","pressurem":"1026.0", "pressurei":"30.30","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 161830Z 10006KT 4SM BR SCT015 BKN031 OVC050 12/12 A3030 RMK AO2" },
{
"date": {
"pretty": "10:56 AM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"11.1", "dewpti":"52.0","hum":"93","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"100","wdire":"East","vism":"6.4", "visi":"4.0","pressurem":"1025.6", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 161856Z 10005KT 4SM BR FEW015 SCT031 OVC050 12/11 A3029 RMK AO2 SLP256 T01220111" },
{
"date": {
"pretty": "11:56 AM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"11.7", "dewpti":"53.1","hum":"93","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"70","wdire":"ENE","vism":"6.4", "visi":"4.0","pressurem":"1024.8", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 161956Z 07004KT 4SM BR FEW015 BKN043 OVC150 13/12 A3026 RMK AO2 SLP248 T01280117" },
{
"date": {
"pretty": "12:56 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.2", "dewpti":"54.0","hum":"96","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"6.4", "visi":"4.0","pressurem":"1023.9", "pressurei":"30.24","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 162056Z 06005KT 4SM BR FEW015 BKN024 OVC041 13/12 A3024 RMK AO2 SLP239 T01280122 58016" },
{
"date": {
"pretty": "1:25 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "13",
"min": "25",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:25 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "21",
"min": "25",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"11.0", "dewpti":"51.8","hum":"88","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"6.4", "visi":"4.0","pressurem":"1023.6", "pressurei":"30.23","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 162125Z 09003KT 4SM BR FEW015 SCT024 OVC038 13/11 A3023 RMK AO2" },
{
"date": {
"pretty": "1:56 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"11.7", "dewpti":"53.1","hum":"90","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"40","wdire":"NE","vism":"6.4", "visi":"4.0","pressurem":"1023.3", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 162156Z 04003KT 4SM BR FEW015 BKN038 OVC150 13/12 A3022 RMK AO2 SLP233 T01330117" },
{
"date": {
"pretty": "2:56 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"11.7", "dewpti":"53.1","hum":"90","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1023.4", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 162256Z 00000KT 4SM BR FEW015 BKN026 OVC038 13/12 A3022 RMK AO2 SLP234 T01330117" },
{
"date": {
"pretty": "3:56 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"11.1", "dewpti":"52.0","hum":"83","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"360","wdire":"North","vism":"8.0", "visi":"5.0","pressurem":"1023.6", "pressurei":"30.23","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Haze","icon":"hazy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 162356Z 36004KT 5SM HZ OVC024 14/11 A3023 RMK AO2 SLP236 T01390111 10144 20122 55003" },
{
"date": {
"pretty": "4:25 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "16",
"min": "25",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:25 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "00",
"min": "25",
"tzname": "UTC"
},
"tempm":"14.0", "tempi":"57.2","dewptm":"11.0", "dewpti":"51.8","hum":"82","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"8.0", "visi":"5.0","pressurem":"1023.6", "pressurei":"30.23","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Haze","icon":"hazy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 170025Z 01006KT 5SM HZ FEW024 BKN037 OVC045 14/11 A3023 RMK AO2" },
{
"date": {
"pretty": "4:56 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"12.8", "dewpti":"55.0","hum":"97","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1023.8", "pressurei":"30.24","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 170056Z 01004KT 4SM BR BKN036 BKN042 13/13 A3023 RMK AO2 SLP238 T01330128" },
{
"date": {
"pretty": "5:56 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"12.2", "dewpti":"54.0","hum":"93","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"350","wdire":"North","vism":"8.0", "visi":"5.0","pressurem":"1023.6", "pressurei":"30.23","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 170156Z 35004KT 5SM BR SCT036 BKN045 OVC150 13/12 A3023 RMK AO2 SLP236 T01330122" },
{
"date": {
"pretty": "6:56 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"12.2", "dewpti":"54.0","hum":"89","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"8.0", "visi":"5.0","pressurem":"1023.9", "pressurei":"30.24","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 170256Z 00000KT 5SM BR SCT022 BKN031 OVC150 14/12 A3024 RMK AO2 SLP239 T01390122 53002" },
{
"date": {
"pretty": "7:56 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.2", "dewpti":"54.0","hum":"96","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"20","wdire":"NNE","vism":"8.0", "visi":"5.0","pressurem":"1023.9", "pressurei":"30.24","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 170356Z 02004KT 5SM BR FEW013 SCT030 BKN150 13/12 A3024 RMK AO2 SLP239 T01280122" },
{
"date": {
"pretty": "8:56 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.8", "dewpti":"55.0","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1024.7", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 170456Z 01003KT 4SM BR FEW012 SCT150 13/13 A3026 RMK AO2 SLP247 T01280128" },
{
"date": {
"pretty": "9:56 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.8", "dewpti":"55.0","hum":"100","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"20","wdire":"NNE","vism":"6.4", "visi":"4.0","pressurem":"1025.0", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 170556Z 02005KT 4SM BR SCT012 SCT029 BKN150 13/13 A3027 RMK AO2 SLP250 T01280128 10144 20128 53012" },
{
"date": {
"pretty": "10:19 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "22",
"min": "19",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:19 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "06",
"min": "19",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"13.0", "dewpti":"55.4","hum":"100","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"20","wdire":"NNE","vism":"6.4", "visi":"4.0","pressurem":"1025.3", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 170619Z 02006KT 4SM BR FEW010 BKN012 13/13 A3028 RMK AO2" },
{
"date": {
"pretty": "10:56 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.2", "dewpti":"54.0","hum":"96","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"9.7", "visi":"6.0","pressurem":"1025.5", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 170656Z 01007KT 6SM BR FEW010 OVC012 13/12 A3029 RMK AO2 SLP255 T01280122" },
{
"date": {
"pretty": "11:56 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"11.1", "dewpti":"52.0","hum":"93","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"80","wdire":"East","vism":"12.9", "visi":"8.0","pressurem":"1025.5", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 170756Z 08004KT 8SM FEW012 OVC014 12/11 A3028 RMK AO2 SLP255 T01220111 401440089" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 16, 2015",
"year": "2015",
"mon": "01",
"mday": "16",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"0","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"12", "meantempi":"53","meandewptm":"11", "meandewpti":"52","meanpressurem":"1025", "meanpressurei":"30.26","meanwindspdm":"5", "meanwindspdi":"3","meanwdire":"","meanwdird":"34","meanvism":"8", "meanvisi":"5","humidity":"","maxtempm":"14", "maxtempi":"58","mintempm":"9", "mintempi":"48","maxhumidity":"100","minhumidity":"80","maxdewptm":"13", "maxdewpti":"55","mindewptm":"9", "mindewpti":"48","maxpressurem":"1026", "maxpressurei":"30.30","minpressurem":"1023", "minpressurei":"30.22","maxwspdm":"14", "maxwspdi":"9","minwspdm":"0", "minwspdi":"0","maxvism":"13", "maxvisi":"8","minvism":"6", "minvisi":"4","gdegreedays":"2","heatingdegreedays":"12","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"212","monthtodateheatingdegreedaysnormal":"240","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"647","since1julheatingdegreedaysnormal":"1250","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:52 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "00",
"min": "52",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:52 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "08",
"min": "52",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"11.0", "dewpti":"51.8","hum":"94","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"11.3", "visi":"7.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 170852Z 09003KT 7SM FEW014 12/11 A3027 RMK AO2" },
{
"date": {
"pretty": "12:56 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"10.6", "dewpti":"51.1","hum":"90","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"70","wdire":"ENE","vism":"11.3", "visi":"7.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 170856Z 07004KT 7SM FEW014 12/11 A3027 RMK AO2 SLP249 T01220106 58001" },
{
"date": {
"pretty": "1:56 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"12.2", "dewpti":"54.0","hum":"100","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"70","wdire":"ENE","vism":"9.7", "visi":"6.0","pressurem":"1024.8", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 170956Z 07007KT 6SM BR FEW015 12/12 A3027 RMK AO2 SLP248 T01220122" },
{
"date": {
"pretty": "2:56 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"11.7", "dewpti":"53.1","hum":"97","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"9.7", "visi":"6.0","pressurem":"1025.2", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 171056Z 09006KT 6SM BR SCT012 BKN031 12/12 A3028 RMK AO2 SLP252 T01220117" },
{
"date": {
"pretty": "3:24 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "03",
"min": "24",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:24 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "11",
"min": "24",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"11.0", "dewpti":"51.8","hum":"94","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"120","wdire":"ESE","vism":"11.3", "visi":"7.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 171124Z 12004KT 7SM SCT012 OVC025 12/11 A3027 RMK AO2" },
{
"date": {
"pretty": "3:51 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "03",
"min": "51",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:51 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "11",
"min": "51",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"11.0", "dewpti":"51.8","hum":"94","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"12.9", "visi":"8.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 171151Z 09007KT 8SM OVC012 12/11 A3027 RMK AO2" },
{
"date": {
"pretty": "3:52 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "03",
"min": "52",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:52 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "11",
"min": "52",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"11.0", "dewpti":"51.8","hum":"94","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"12.9", "visi":"8.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 171152Z 09007KT 8SM OVC012 12/11 A3027 RMK AO2" },
{
"date": {
"pretty": "3:56 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"11.7", "dewpti":"53.1","hum":"97","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"12.9", "visi":"8.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 171156Z 09007KT 8SM OVC012 12/12 A3027 RMK AO2 SLP249 T01220117 10128 20117 58001" },
{
"date": {
"pretty": "4:52 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "04",
"min": "52",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:52 PM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "12",
"min": "52",
"tzname": "UTC"
},
"tempm":"11.0", "tempi":"51.8","dewptm":"11.0", "dewpti":"51.8","hum":"100","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"130","wdire":"SE","vism":"9.7", "visi":"6.0","pressurem":"1024.6", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 171252Z 13004KT 6SM BR FEW015 BKN017 11/11 A3026 RMK AO2" },
{
"date": {
"pretty": "4:56 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.6", "dewpti":"51.1","hum":"97","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"130","wdire":"SE","vism":"11.3", "visi":"7.0","pressurem":"1024.7", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 171256Z 13005KT 7SM FEW015 BKN017 11/11 A3026 RMK AO2 SLP247 T01110106" },
{
"date": {
"pretty": "5:30 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "05",
"min": "30",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:30 PM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "13",
"min": "30",
"tzname": "UTC"
},
"tempm":"11.0", "tempi":"51.8","dewptm":"10.0", "dewpti":"50.0","hum":"94","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1024.3", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 171330Z 00000KT 7SM FEW015 SCT017 11/10 A3025 RMK AO2" },
{
"date": {
"pretty": "5:56 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"10.6", "dewpti":"51.1","hum":"93","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1024.4", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 171356Z 00000KT 8SM FEW015 SCT017 12/11 A3025 RMK AO2 SLP244 T01170106" },
{
"date": {
"pretty": "6:56 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.6", "dewpti":"51.1","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"9.7", "visi":"6.0","pressurem":"1024.6", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 171456Z 00000KT 6SM BR FEW010 SCT160 BKN200 11/11 A3026 RMK AO2 SLP246 T01060106 55002" },
{
"date": {
"pretty": "7:56 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.6", "dewpti":"51.1","hum":"97","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"9.7", "visi":"6.0","pressurem":"1025.5", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 171556Z 00000KT 6SM BR FEW010 SCT160 BKN200 11/11 A3029 RMK AO2 SLP255 T01110106" },
{
"date": {
"pretty": "8:56 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"11.1", "dewpti":"52.0","hum":"96","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"170","wdire":"South","vism":"9.7", "visi":"6.0","pressurem":"1025.2", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 171656Z 17006KT 6SM BR FEW008 SCT160 12/11 A3028 RMK AO2 SLP252 T01170111" },
{
"date": {
"pretty": "9:56 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"11.1", "dewpti":"52.0","hum":"93","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"130","wdire":"SE","vism":"9.7", "visi":"6.0","pressurem":"1025.7", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 171756Z 13004KT 6SM BR FEW007 SCT180 12/11 A3029 RMK AO2 SLP257 T01220111 10122 20106 51011" },
{
"date": {
"pretty": "10:56 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"12.2", "dewpti":"54.0","hum":"93","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"9.7", "visi":"6.0","pressurem":"1025.5", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 171856Z 09005KT 6SM BR BKN200 13/12 A3029 RMK AO2 SLP255 T01330122" },
{
"date": {
"pretty": "11:56 AM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"11.7", "dewpti":"53.1","hum":"90","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"80","wdire":"East","vism":"11.3", "visi":"7.0","pressurem":"1024.5", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 171956Z 08004KT 7SM BKN200 13/12 A3025 RMK AO2 SLP245 T01330117" },
{
"date": {
"pretty": "12:56 PM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"12.2", "dewpti":"54.0","hum":"89","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"40","wdire":"NE","vism":"11.3", "visi":"7.0","pressurem":"1023.2", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 172056Z 04006KT 7SM BKN200 14/12 A3022 RMK AO2 SLP232 T01390122 58025" },
{
"date": {
"pretty": "1:56 PM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"12.2", "dewpti":"54.0","hum":"93","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"70","wdire":"ENE","vism":"11.3", "visi":"7.0","pressurem":"1022.7", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 172156Z 07003KT 7SM BKN200 13/12 A3020 RMK AO2 SLP227 T01330122" },
{
"date": {
"pretty": "2:56 PM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"11.7", "dewpti":"53.1","hum":"84","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"50","wdire":"NE","vism":"9.7", "visi":"6.0","pressurem":"1022.5", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Haze","icon":"hazy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 172256Z 05003KT 6SM HZ BKN200 14/12 A3020 RMK AO2 SLP225 T01440117" },
{
"date": {
"pretty": "3:56 PM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"11.7", "dewpti":"53.1","hum":"84","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1022.8", "pressurei":"30.21","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 172356Z 00000KT 7SM BKN200 14/12 A3021 RMK AO2 SLP228 T01440117 10144 20122 55004" },
{
"date": {
"pretty": "4:56 PM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"11.7", "dewpti":"53.1","hum":"87","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"360","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1023.4", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 180056Z 36003KT 7SM BKN200 14/12 A3022 RMK AO2 SLP234 T01390117" },
{
"date": {
"pretty": "5:56 PM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"12.8", "dewpti":"55.0","hum":"97","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"40","wdire":"NE","vism":"14.5", "visi":"9.0","pressurem":"1023.4", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 180156Z COR 04004KT 9SM SCT017 OVC200 13/13 A3022 RMK AO2 SLP234 T01330128" },
{
"date": {
"pretty": "6:56 PM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"12.2", "dewpti":"54.0","hum":"93","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"350","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1024.2", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 180256Z 35007KT 9SM FEW020 OVC200 13/12 A3025 RMK AO2 SLP242 T01330122 53014" },
{
"date": {
"pretty": "7:56 PM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"11.7", "dewpti":"53.1","hum":"87","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1024.4", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 180356Z 00000KT 10SM BKN200 14/12 A3025 RMK AO2 SLP244 T01390117" },
{
"date": {
"pretty": "8:56 PM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"12.0", "dewpti":"53.6","hum":"94","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"170","wdire":"South","vism":"14.5", "visi":"9.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 180456Z 17004KT 9SM BKN200 13/12 A3027" },
{
"date": {
"pretty": "9:56 PM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"11.7", "dewpti":"53.1","hum":"90","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 180556Z 00000KT 9SM SCT200 13/12 A3027 RMK AO2 SLP249 T01330117 10144 20128 51007" },
{
"date": {
"pretty": "10:56 PM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.2", "dewpti":"54.0","hum":"96","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"20","wdire":"NNE","vism":"14.5", "visi":"9.0","pressurem":"1025.4", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 180656Z 02003KT 9SM SCT025 SCT030 BKN180 13/12 A3028 RMK AO2 SLP254 T01280122" },
{
"date": {
"pretty": "11:56 PM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"12.8", "dewpti":"55.0","hum":"97","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"100","wdire":"East","vism":"12.9", "visi":"8.0","pressurem":"1025.5", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 180756Z 10003KT 8SM FEW018 BKN023 13/13 A3028 RMK AO2 SLP255 T01330128 401440106" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 17, 2015",
"year": "2015",
"mon": "01",
"mday": "17",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"0","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"13", "meantempi":"55","meandewptm":"12", "meandewpti":"53","meanpressurem":"1025", "meanpressurei":"30.26","meanwindspdm":"6", "meanwindspdi":"4","meanwdire":"","meanwdird":"84","meanvism":"12", "meanvisi":"7","humidity":"","maxtempm":"14", "maxtempi":"58","mintempm":"11", "mintempi":"51","maxhumidity":"100","minhumidity":"86","maxdewptm":"13", "maxdewpti":"55","mindewptm":"10", "mindewpti":"50","maxpressurem":"1026", "maxpressurei":"30.29","minpressurem":"1023", "minpressurei":"30.20","maxwspdm":"16", "maxwspdi":"10","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"10", "minvisi":"6","gdegreedays":"4","heatingdegreedays":"10","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"222","monthtodateheatingdegreedaysnormal":"255","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"657","since1julheatingdegreedaysnormal":"1265","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.2", "dewpti":"54.0","hum":"96","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"120","wdire":"ESE","vism":"12.9", "visi":"8.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 180856Z 12003KT 8SM FEW013 BKN016 BKN024 13/12 A3027 RMK AO2 SLP249 T01280122 58000" },
{
"date": {
"pretty": "1:56 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"11.7", "dewpti":"53.1","hum":"93","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1024.7", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 180956Z 00000KT 8SM FEW012 BKN016 13/12 A3026 RMK AO2 SLP247 T01280117" },
{
"date": {
"pretty": "2:56 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.2", "dewpti":"54.0","hum":"96","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"12.9", "visi":"8.0","pressurem":"1024.6", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 181056Z 09003KT 8SM FEW011 BKN014 13/12 A3026 RMK AO2 SLP246 T01280122" },
{
"date": {
"pretty": "3:56 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.2", "dewpti":"54.0","hum":"96","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1024.4", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 181156Z 00000KT 8SM FEW008 BKN011 OVC014 13/12 A3025 RMK AO2 SLP244 T01280122 10133 20128 58005" },
{
"date": {
"pretty": "4:56 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.8", "dewpti":"55.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1024.4", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 181256Z 00000KT 8SM FEW008 BKN011 OVC014 13/13 A3025 RMK AO2 SLP244 T01280128" },
{
"date": {
"pretty": "5:56 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"12.2", "dewpti":"54.0","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"30","wdire":"NNE","vism":"6.4", "visi":"4.0","pressurem":"1025.0", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 181356Z 03003KT 4SM BR FEW002 OVC008 12/12 A3027 RMK AO2 SLP250 T01220122" },
{
"date": {
"pretty": "6:56 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"12.2", "dewpti":"54.0","hum":"100","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"360","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1025.4", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 181456Z 36004KT 4SM BR FEW002 OVC005 12/12 A3028 RMK AO2 SLP254 T01220122 53009" },
{
"date": {
"pretty": "7:36 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "07",
"min": "36",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:36 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "15",
"min": "36",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"4.8", "visi":"3.0","pressurem":"1025.6", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 181536Z 00000KT 3SM BR FEW002 OVC004 12/12 A3029 RMK AO2" },
{
"date": {
"pretty": "7:41 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "07",
"min": "41",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:41 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "15",
"min": "41",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"12.0", "dewpti":"53.6","hum":"94","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"4.0", "visi":"2.5","pressurem":"1025.3", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 181541Z 00000KT 2 1/2SM BR FEW002 OVC004 13/12 A3028 RMK AO2" },
{
"date": {
"pretty": "7:56 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"3.2", "visi":"2.0","pressurem":"1025.6", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 181556Z 00000KT 2SM BR FEW002 OVC004 12/12 A3029" },
{
"date": {
"pretty": "8:56 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.8", "dewpti":"55.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"3.2", "visi":"2.0","pressurem":"1026.1", "pressurei":"30.30","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 181656Z 00000KT 2SM BR FEW002 OVC004 13/13 A3030 RMK AO2 SLP261 T01280128" },
{
"date": {
"pretty": "9:24 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "09",
"min": "24",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:24 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "17",
"min": "24",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"12.0", "dewpti":"53.6","hum":"94","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"2.8", "visi":"1.8","pressurem":"1026.3", "pressurei":"30.31","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 181724Z 00000KT 1 3/4SM R28R/5500VP6000FT BR FEW001 OVC003 13/12 A3031 RMK AO2" },
{
"date": {
"pretty": "9:42 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "09",
"min": "42",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:42 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "17",
"min": "42",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"13.0", "dewpti":"55.4","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.8", "visi":"0.5","pressurem":"1026.6", "pressurei":"30.32","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 181742Z 00000KT 1/2SM R28R/4000VP6000FT BR FEW001 OVC003 13/13 A3032 RMK AO2 SFC VIS 1 1/4" },
{
"date": {
"pretty": "9:56 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"12.2", "dewpti":"54.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.8", "visi":"0.5","pressurem":"1026.8", "pressurei":"30.32","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 181756Z 00000KT 1/2SM R28R/4000VP6000FT BR FEW001 OVC003 12/12 A3032 RMK AO2 SFC VIS 3/4 SLP268 VIS W 1 T01220122 10128 20122 53014" },
{
"date": {
"pretty": "10:45 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "10",
"min": "45",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:45 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "18",
"min": "45",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.4", "visi":"0.2","pressurem":"1027.0", "pressurei":"30.33","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 181845Z 00000KT 1/4SM R28R/1400V4000FT FG FEW001 OVC002 12/12 A3033 RMK AO2 VIS SE 3/4 W-NW 1/2" },
{
"date": {
"pretty": "10:54 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "10",
"min": "54",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:54 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "18",
"min": "54",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"13.0", "dewpti":"55.4","hum":"100","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"360","wdire":"North","vism":"0.4", "visi":"0.2","pressurem":"1027.0", "pressurei":"30.33","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 181854Z 36004KT 1/4SM R28R/1200V2000FT FG VV002 13/13 A3033 RMK AO2 VIS W 1/2" },
{
"date": {
"pretty": "10:56 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.8", "dewpti":"55.0","hum":"100","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"360","wdire":"North","vism":"0.4", "visi":"0.2","pressurem":"1027.0", "pressurei":"30.33","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 181856Z 36004KT 1/4SM R28R/1200V2200FT FG VV002 13/13 A3033 RMK AO2 SLP270 T01280128" },
{
"date": {
"pretty": "11:22 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "11",
"min": "22",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:22 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "19",
"min": "22",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"360","wdire":"North","vism":"0.2", "visi":"0.1","pressurem":"1026.6", "pressurei":"30.32","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 181922Z 36005KT 1/8SM R28R/1200V1400FT FG VV002 12/12 A3032 RMK AO2" },
{
"date": {
"pretty": "11:35 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "11",
"min": "35",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:35 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "19",
"min": "35",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.4", "visi":"0.2","pressurem":"1026.6", "pressurei":"30.32","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 181935Z 00000KT 1/4SM R28R/1000V3000FT FG VV002 12/12 A3032 RMK AO2" },
{
"date": {
"pretty": "11:56 AM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"12.2", "dewpti":"54.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.4", "visi":"0.2","pressurem":"1026.3", "pressurei":"30.31","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 181956Z 00000KT 1/4SM R28R/1200V3500FT FG VV002 12/12 A3031 RMK AO2 SLP263 T01220122" },
{
"date": {
"pretty": "12:06 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "12",
"min": "06",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:06 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "20",
"min": "06",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.8", "visi":"0.5","pressurem":"1026.0", "pressurei":"30.30","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 182006Z 00000KT 1/2SM R28R/1400V2800FT FG VV002 12/12 A3030 RMK AO2" },
{
"date": {
"pretty": "12:38 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "12",
"min": "38",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:38 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "20",
"min": "38",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"1.2", "visi":"0.8","pressurem":"1025.6", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 182038Z 00000KT 3/4SM R28R/1000V2200FT BR BKN002 12/12 A3029 RMK AO2 $" },
{
"date": {
"pretty": "12:56 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.8", "dewpti":"55.0","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"20","wdire":"NNE","vism":"0.8", "visi":"0.5","pressurem":"1025.5", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 182056Z 02003KT 1/2SM R28R/0800V1400FT FG OVC002 13/13 A3028 RMK AO2 SLP255 T01280128 58016 $" },
{
"date": {
"pretty": "1:49 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "13",
"min": "49",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:49 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "21",
"min": "49",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"50","wdire":"NE","vism":"1.6", "visi":"1.0","pressurem":"1024.6", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 182149Z 05003KT 1SM R28R/0800V1400FT BR SCT002 BKN160 12/12 A3026 RMK AO2 VIS E-SE 3/4" },
{
"date": {
"pretty": "1:56 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"12.2", "dewpti":"54.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"4.8", "visi":"3.0","pressurem":"1024.8", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 182156Z 00000KT 3SM R28R/0800V4500FT BR FEW002 BKN160 12/12 A3026 RMK AO2 SLP248 VIS E-SE 3/4 T01220122" },
{
"date": {
"pretty": "2:56 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"12.2", "dewpti":"54.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"11.3", "visi":"7.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 182256Z 00000KT 7SM FEW002 BKN160 12/12 A3027 RMK AO2 SLP249 VIS E-SE 1 T01220122 $" },
{
"date": {
"pretty": "3:56 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"13.3", "dewpti":"55.9","hum":"93","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1024.6", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 182356Z 00000KT 8SM SCT160 14/13 A3026 RMK AO2 SLP246 T01440133 10144 20117 56009 $" },
{
"date": {
"pretty": "4:56 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.6", "tempi":"60.1","dewptm":"14.4", "dewpti":"57.9","hum":"93","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"340","wdire":"NNW","vism":"16.1", "visi":"10.0","pressurem":"1024.5", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 190056Z 34005KT 10SM SCT160 16/14 A3026 RMK AO2 SLP245 T01560144 $" },
{
"date": {
"pretty": "5:56 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.6", "tempi":"60.1","dewptm":"15.0", "dewpti":"59.0","hum":"96","wspdm":"14.8", "wspdi":"9.2","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1024.7", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 190156Z 28008KT 10SM BKN160 16/15 A3026 RMK AO2 SLP247 T01560150" },
{
"date": {
"pretty": "6:56 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.0", "tempi":"59.0","dewptm":"15.0", "dewpti":"59.0","hum":"100","wspdm":"14.8", "wspdi":"9.2","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1025.0", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 190256Z 28008KT 10SM BKN160 15/15 A3027 RMK AO2 SLP250 T01500150 53004" },
{
"date": {
"pretty": "7:56 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.0", "tempi":"59.0","dewptm":"14.4", "dewpti":"57.9","hum":"96","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1024.5", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 190356Z 00000KT 10SM BKN160 15/14 A3026 RMK AO2 SLP245 T01500144" },
{
"date": {
"pretty": "8:56 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.0", "tempi":"59.0","dewptm":"14.4", "dewpti":"57.9","hum":"96","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 190456Z 28006KT 10SM OVC160 15/14 A3027 RMK AO2 SLP249 T01500144" },
{
"date": {
"pretty": "9:56 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"13.9", "dewpti":"57.0","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"310","wdire":"NW","vism":"16.1", "visi":"10.0","pressurem":"1024.7", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 190556Z 31003KT 10SM OVC160 14/14 A3026 RMK AO2 SLP247 T01390139 10161 20139 56002" },
{
"date": {
"pretty": "10:56 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"13.3", "dewpti":"55.9","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1025.0", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 190656Z 00000KT 10SM FEW150 BKN200 13/13 A3027 RMK AO2 SLP250 T01330133" },
{
"date": {
"pretty": "11:56 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"13.3", "dewpti":"55.9","hum":"100","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"16.1", "visi":"10.0","pressurem":"1025.0", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 190756Z 29006KT 10SM FEW006 BKN200 13/13 A3027 RMK AO2 SLP250 T01330133 401610117" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 18, 2015",
"year": "2015",
"mon": "01",
"mday": "18",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"1","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"14", "meantempi":"57","meandewptm":"13", "meandewpti":"55","meanpressurem":"1025", "meanpressurei":"30.28","meanwindspdm":"4", "meanwindspdi":"3","meanwdire":"","meanwdird":"350","meanvism":"8", "meanvisi":"5","humidity":"","maxtempm":"16", "maxtempi":"61","mintempm":"12", "mintempi":"53","maxhumidity":"100","minhumidity":"90","maxdewptm":"15", "maxdewpti":"59","mindewptm":"12", "mindewpti":"53","maxpressurem":"1027", "maxpressurei":"30.33","minpressurem":"1024", "minpressurei":"30.25","maxwspdm":"16", "maxwspdi":"10","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"0", "minvisi":"0","gdegreedays":"7","heatingdegreedays":"8","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"230","monthtodateheatingdegreedaysnormal":"270","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"665","since1julheatingdegreedaysnormal":"1280","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:38 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "00",
"min": "38",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:38 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "08",
"min": "38",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"13.0", "dewpti":"55.4","hum":"100","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"300","wdire":"WNW","vism":"9.7", "visi":"6.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 190838Z 30007KT 6SM BR FEW003 BKN008 OVC200 13/13 A3027 RMK AO2" },
{
"date": {
"pretty": "12:56 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.8", "dewpti":"55.0","hum":"100","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"1.6", "visi":"1.0","pressurem":"1024.8", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 190856Z 29006KT 1SM R28R/3500VP6000FT BR SCT003 BKN008 OVC200 13/13 A3026 RMK AO2 SLP248 VIS E-S 6 T01280128 50001" },
{
"date": {
"pretty": "1:25 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "01",
"min": "25",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:25 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "09",
"min": "25",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"13.0", "dewpti":"55.4","hum":"100","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"320","wdire":"NW","vism":"3.2", "visi":"2.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 190925Z 32007KT 2SM BR SCT003 BKN006 OVC200 13/13 A3027 RMK AO2 VIS S 6" },
{
"date": {
"pretty": "1:56 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"13.3", "dewpti":"55.9","hum":"100","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"300","wdire":"WNW","vism":"3.2", "visi":"2.0","pressurem":"1025.0", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 190956Z 30006KT 2SM BR SCT003 BKN006 OVC008 13/13 A3027 RMK AO2 SLP250 T01330133" },
{
"date": {
"pretty": "2:12 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "02",
"min": "12",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:12 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "10",
"min": "12",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"13.0", "dewpti":"55.4","hum":"100","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"300","wdire":"WNW","vism":"4.8", "visi":"3.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 191012Z 30005KT 3SM BR SCT003 BKN006 OVC008 13/13 A3027 RMK AO2" },
{
"date": {
"pretty": "2:56 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.8", "dewpti":"55.0","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"300","wdire":"WNW","vism":"9.7", "visi":"6.0","pressurem":"1025.3", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 191056Z 30003KT 6SM BR SCT003 BKN006 OVC010 13/13 A3028 RMK AO2 SLP253 T01280128" },
{
"date": {
"pretty": "3:30 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "03",
"min": "30",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:30 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "11",
"min": "30",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"13.0", "dewpti":"55.4","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"3.2", "visi":"2.0","pressurem":"1025.3", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 191130Z 00000KT 2SM BR SCT003 BKN006 OVC010 13/13 A3028 RMK AO2" },
{
"date": {
"pretty": "3:35 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "03",
"min": "35",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:35 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "11",
"min": "35",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"13.0", "dewpti":"55.4","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"1.6", "visi":"1.0","pressurem":"1025.3", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 191135Z 00000KT 1SM R28R/4500V6000FT BR SCT003 OVC006 13/13 A3028 RMK AO2 $" },
{
"date": {
"pretty": "3:56 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"13.3", "dewpti":"55.9","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"1.6", "visi":"1.0","pressurem":"1025.2", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 191156Z 00000KT 1SM R28R/4500V5000FT BR SCT003 OVC006 13/13 A3028 RMK AO2 SLP252 T01330133 10144 20128 50004 $" },
{
"date": {
"pretty": "4:56 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"13.3", "dewpti":"55.9","hum":"100","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"190","wdire":"South","vism":"6.4", "visi":"4.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 191256Z 19004KT 4SM BR SCT003 BKN006 OVC012 13/13 A3027 RMK AO2 SLP249 T01330133 $" },
{
"date": {
"pretty": "5:56 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"13.3", "dewpti":"55.9","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"110","wdire":"ESE","vism":"11.3", "visi":"7.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 191356Z 11003KT 7SM FEW004 BKN006 OVC010 13/13 A3027 RMK AO2 SLP249 T01330133 $" },
{
"date": {
"pretty": "6:22 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "06",
"min": "22",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:22 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "14",
"min": "22",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"13.0", "dewpti":"55.4","hum":"100","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"0.4", "visi":"0.2","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 191422Z 09004KT 1/4SM R28R/3000V6000FT FG VV002 13/13 A3027 RMK AO2 $" },
{
"date": {
"pretty": "6:52 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "06",
"min": "52",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:52 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "14",
"min": "52",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"13.0", "dewpti":"55.4","hum":"100","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"50","wdire":"NE","vism":"1.6", "visi":"1.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 191452Z 05004KT 1SM R28R/P6000FT BR BKN002 OVC017 13/13 A3027 RMK AO2 $" },
{
"date": {
"pretty": "6:56 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.8", "dewpti":"55.0","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"1.6", "visi":"1.0","pressurem":"1025.1", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 191456Z 06003KT 1SM R28R/P6000FT BR BKN002 OVC017 13/13 A3027 RMK AO2 SLP251 T01280128 55001 $" },
{
"date": {
"pretty": "7:03 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "07",
"min": "03",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:03 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "15",
"min": "03",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"13.0", "dewpti":"55.4","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"4.0", "visi":"2.5","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 191503Z 06003KT 2 1/2SM BR SCT002 OVC015 13/13 A3027 RMK AO2 $" },
{
"date": {
"pretty": "7:11 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "07",
"min": "11",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:11 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "15",
"min": "11",
"tzname": "UTC"
},
"tempm":"13.0", "tempi":"55.4","dewptm":"13.0", "dewpti":"55.4","hum":"100","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"50","wdire":"NE","vism":"4.8", "visi":"3.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 191511Z 05005KT 3SM BR SCT002 OVC015 13/13 A3027 RMK AO2 $" },
{
"date": {
"pretty": "7:42 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "07",
"min": "42",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:42 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "15",
"min": "42",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"12.0", "dewpti":"53.6","hum":"100","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"50","wdire":"NE","vism":"16.1", "visi":"10.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 191542Z 05004KT 10SM FEW008 OVC018 12/12 A3027 RMK AO2 $" },
{
"date": {
"pretty": "7:56 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"12.2", "dewpti":"54.0","hum":"100","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"40","wdire":"NE","vism":"16.1", "visi":"10.0","pressurem":"1025.2", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 191556Z 04006KT 10SM FEW008 OVC018 12/12 A3028 RMK AO2 SLP252 T01220122 $" },
{
"date": {
"pretty": "8:56 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"12.8", "dewpti":"55.0","hum":"100","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"50","wdire":"NE","vism":"16.1", "visi":"10.0","pressurem":"1025.7", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 191656Z 05007KT 10SM FEW008 OVC018 13/13 A3029 RMK AO2 SLP257 T01280128 $" },
{
"date": {
"pretty": "9:56 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"12.2", "dewpti":"54.0","hum":"93","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"16.1", "visi":"10.0","pressurem":"1026.1", "pressurei":"30.30","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 191756Z 06004KT 10SM FEW009 OVC018 13/12 A3030 RMK AO2 SLP261 T01330122 10133 20122 53010 $" },
{
"date": {
"pretty": "10:56 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"12.2", "dewpti":"54.0","hum":"87","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"40","wdire":"NE","vism":"16.1", "visi":"10.0","pressurem":"1026.0", "pressurei":"30.30","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 191856Z 04007KT 10SM FEW009 BKN018 14/12 A3030 RMK AO2 SLP260 T01440122 $" },
{
"date": {
"pretty": "11:56 AM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"11.7", "dewpti":"53.1","hum":"84","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"16.1", "visi":"10.0","pressurem":"1025.3", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 191956Z 06004KT 10SM FEW010 SCT018 14/12 A3028 RMK AO2 SLP253 T01440117 $" },
{
"date": {
"pretty": "12:56 PM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.6", "tempi":"60.1","dewptm":"11.7", "dewpti":"53.1","hum":"78","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1024.2", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 192056Z 00000KT 10SM FEW018 16/12 A3025 RMK AO2 SLP242 T01560117 58018 $" },
{
"date": {
"pretty": "1:56 PM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.0", "tempi":"59.0","dewptm":"11.1", "dewpti":"52.0","hum":"78","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1023.2", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 192156Z 00000KT 10SM FEW018 15/11 A3022 RMK AO2 PRESFR SLP232 T01500111 $" },
{
"date": {
"pretty": "2:56 PM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.6", "tempi":"60.1","dewptm":"11.1", "dewpti":"52.0","hum":"75","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1023.1", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 192256Z 00000KT 10SM FEW018 16/11 A3021 RMK AO2 SLP231 T01560111 $" },
{
"date": {
"pretty": "3:56 PM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.0", "tempi":"59.0","dewptm":"11.7", "dewpti":"53.1","hum":"81","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.8", "pressurei":"30.21","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 192356Z 00000KT 10SM FEW018 SCT200 15/12 A3021 RMK AO2 SLP228 T01500117 10156 20133 56015 $" },
{
"date": {
"pretty": "4:56 PM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"12.2", "dewpti":"54.0","hum":"87","wspdm":"18.5", "wspdi":"11.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"16.1", "visi":"10.0","pressurem":"1022.6", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 200056Z 29010KT 10SM FEW011 SCT018 BKN200 14/12 A3020 RMK AO2 SLP226 T01440122 $" },
{
"date": {
"pretty": "5:56 PM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"12.2", "dewpti":"54.0","hum":"93","wspdm":"20.4", "wspdi":"12.7","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1022.6", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 200156Z 28011KT 10SM FEW009 SCT018 BKN200 13/12 A3020 RMK AO2 SLP226 T01330122 $" },
{
"date": {
"pretty": "6:56 PM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"11.7", "dewpti":"53.1","hum":"90","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1022.7", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 200256Z 28007KT 10SM BKN200 13/12 A3020 RMK AO2 SLP227 T01330117 55001 $" },
{
"date": {
"pretty": "7:56 PM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"11.7", "dewpti":"53.1","hum":"93","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"16.1", "visi":"10.0","pressurem":"1022.9", "pressurei":"30.21","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 200356Z 29006KT 10SM SCT200 13/12 A3021 RMK AO2 SLP229 T01280117 $" },
{
"date": {
"pretty": "8:56 PM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"11.1", "dewpti":"52.0","hum":"89","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.5", "pressurei":"30.20","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 200456Z 00000KT 10SM SCT200 13/11 A3020 RMK AO2 SLP225 T01280111 $" },
{
"date": {
"pretty": "9:56 PM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"10.6", "dewpti":"51.1","hum":"90","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.0", "pressurei":"30.18","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 200556Z 00000KT 10SM SCT200 12/11 A3018 RMK AO2 SLP220 T01220106 10156 20117 58007 $" },
{
"date": {
"pretty": "10:56 PM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"11.1", "dewpti":"52.0","hum":"96","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.0", "pressurei":"30.18","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 200656Z 00000KT 10SM FEW200 12/11 A3018 RMK AO2 SLP220 T01170111 $" },
{
"date": {
"pretty": "11:56 PM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"10.6", "dewpti":"51.1","hum":"93","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"300","wdire":"WNW","vism":"16.1", "visi":"10.0","pressurem":"1021.7", "pressurei":"30.17","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 200756Z 30004KT 10SM SCT200 12/11 A3017 RMK AO2 SLP217 T01170106 401560111 $" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 19, 2015",
"year": "2015",
"mon": "01",
"mday": "19",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"1","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"13", "meantempi":"56","meandewptm":"12", "meandewpti":"54","meanpressurem":"1024", "meanpressurei":"30.25","meanwindspdm":"7", "meanwindspdi":"4","meanwdire":"","meanwdird":"359","meanvism":"11", "meanvisi":"7","humidity":"","maxtempm":"16", "maxtempi":"60","mintempm":"11", "mintempi":"52","maxhumidity":"100","minhumidity":"72","maxdewptm":"13", "maxdewpti":"56","mindewptm":"11", "mindewpti":"51","maxpressurem":"1026", "maxpressurei":"30.30","minpressurem":"1022", "minpressurei":"30.17","maxwspdm":"24", "maxwspdi":"15","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"0", "minvisi":"0","gdegreedays":"6","heatingdegreedays":"9","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"239","monthtodateheatingdegreedaysnormal":"285","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"674","since1julheatingdegreedaysnormal":"1295","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.6", "dewpti":"51.1","hum":"97","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1021.2", "pressurei":"30.16","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 200856Z 00000KT 10SM SCT200 11/11 A3016 RMK AO2 SLP212 T01110106 58008 $" },
{
"date": {
"pretty": "1:56 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"10.0", "dewpti":"50.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1021.3", "pressurei":"30.16","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 200956Z 00000KT 10SM FEW200 10/10 A3016 RMK AO2 SLP213 T01000100 $" },
{
"date": {
"pretty": "2:56 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.0", "dewpti":"50.0","hum":"96","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1021.1", "pressurei":"30.16","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 201056Z 00000KT 10SM FEW008 BKN200 11/10 A3016 RMK AO2 SLP211 T01060100 $" },
{
"date": {
"pretty": "3:56 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"9.4", "dewpti":"48.9","hum":"96","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1020.4", "pressurei":"30.14","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 201156Z 00000KT 10SM FEW008 BKN200 10/09 A3013 RMK AO2 SLP204 T01000094 10122 20100 58008 $" },
{
"date": {
"pretty": "4:20 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "04",
"min": "20",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:20 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "12",
"min": "20",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"9.0", "dewpti":"48.2","hum":"94","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1020.2", "pressurei":"30.13","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 201220Z 00000KT 10SM BKN006 10/09 A3013 RMK AO2 $" },
{
"date": {
"pretty": "4:56 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.6", "dewpti":"51.1","hum":"97","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1020.2", "pressurei":"30.13","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 201256Z 00000KT 9SM OVC006 11/11 A3013 RMK AO2 SLP202 T01110106 $" },
{
"date": {
"pretty": "5:44 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "05",
"min": "44",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:44 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "13",
"min": "44",
"tzname": "UTC"
},
"tempm":"11.0", "tempi":"51.8","dewptm":"11.0", "dewpti":"51.8","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"20","wdire":"NNE","vism":"4.8", "visi":"3.0","pressurem":"1020.5", "pressurei":"30.14","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 201344Z 02003KT 3SM BR FEW001 OVC004 11/11 A3014 RMK AO2 $" },
{
"date": {
"pretty": "5:56 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"11.1", "dewpti":"52.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1020.5", "pressurei":"30.14","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 201356Z 00000KT 4SM R28R/2400VP6000FT BR FEW001 OVC004 11/11 A3014 RMK AO2 SLP205 VIS N 1 T01110111 $" },
{
"date": {
"pretty": "6:23 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "06",
"min": "23",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:23 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "14",
"min": "23",
"tzname": "UTC"
},
"tempm":"11.0", "tempi":"51.8","dewptm":"11.0", "dewpti":"51.8","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"30","wdire":"NNE","vism":"0.4", "visi":"0.2","pressurem":"1020.5", "pressurei":"30.14","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 201423Z 03003KT 1/4SM R28R/2200V4000FT FG VV002 11/11 A3014 RMK AO2 VIS N 1 $" },
{
"date": {
"pretty": "6:56 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"11.1", "dewpti":"52.0","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"0.4", "visi":"0.2","pressurem":"1020.6", "pressurei":"30.14","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 201456Z 01003KT 1/4SM R28R/2000V2600FT FG VV002 11/11 A3014 RMK AO2 SLP206 VIS N 1 T01110111 53002 $" },
{
"date": {
"pretty": "7:56 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.6", "dewpti":"51.1","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"0.4", "visi":"0.2","pressurem":"1020.9", "pressurei":"30.15","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Fog","icon":"fog","fog":"1","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 201556Z 00000KT 1/4SM R28R/2000V2600FT FG VV002 11/11 A3015 RMK AO2 SLP209 T01060106 $" },
{
"date": {
"pretty": "8:56 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"10.6", "dewpti":"51.1","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"1.6", "visi":"1.0","pressurem":"1021.3", "pressurei":"30.16","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 201656Z 00000KT 1SM R28R/P6000FT BR OVC002 11/11 A3016 RMK AO2 SLP213 T01060106" },
{
"date": {
"pretty": "9:52 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "09",
"min": "52",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:52 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "17",
"min": "52",
"tzname": "UTC"
},
"tempm":"11.0", "tempi":"51.8","dewptm":"11.0", "dewpti":"51.8","hum":"100","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"50","wdire":"NE","vism":"4.8", "visi":"3.0","pressurem":"1021.6", "pressurei":"30.17","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 201752Z 05004KT 3SM BR OVC006 11/11 A3017 RMK AO2" },
{
"date": {
"pretty": "9:56 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"10.6", "dewpti":"51.1","hum":"97","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"4.8", "visi":"3.0","pressurem":"1021.6", "pressurei":"30.17","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Overcast","icon":"cloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 201756Z 00000KT 3SM BR SCT001 OVC006 11/11 A3017 RMK AO2 SLP216 T01110106 10117 20094 51010" },
{
"date": {
"pretty": "10:56 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"10.6", "dewpti":"51.1","hum":"93","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"6.4", "visi":"4.0","pressurem":"1021.6", "pressurei":"30.17","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 201856Z 00000KT 4SM BR FEW001 BKN006 12/11 A3017 RMK AO2 SLP216 T01170106" },
{
"date": {
"pretty": "11:15 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "11",
"min": "15",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:15 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "19",
"min": "15",
"tzname": "UTC"
},
"tempm":"12.0", "tempi":"53.6","dewptm":"11.0", "dewpti":"51.8","hum":"94","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"70","wdire":"ENE","vism":"8.0", "visi":"5.0","pressurem":"1021.2", "pressurei":"30.16","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 201915Z 07004KT 5SM BR FEW001 SCT008 12/11 A3016 RMK AO2" },
{
"date": {
"pretty": "11:56 AM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"10.6", "dewpti":"51.1","hum":"90","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"40","wdire":"NE","vism":"6.4", "visi":"4.0","pressurem":"1020.6", "pressurei":"30.14","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 201956Z 04005KT 4SM BR FEW001 12/11 A3014 RMK AO2 SLP206 T01220106" },
{
"date": {
"pretty": "12:56 PM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"11.1", "dewpti":"52.0","hum":"87","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"50","wdire":"NE","vism":"6.4", "visi":"4.0","pressurem":"1019.5", "pressurei":"30.11","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 202056Z 05004KT 4SM BR FEW001 13/11 A3011 RMK AO2 SLP195 T01330111 58021" },
{
"date": {
"pretty": "1:56 PM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"11.1", "dewpti":"52.0","hum":"87","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"80","wdire":"East","vism":"11.3", "visi":"7.0","pressurem":"1018.8", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 202156Z 08003KT 7SM FEW001 13/11 A3009 RMK AO2 SLP188 T01330111" },
{
"date": {
"pretty": "2:56 PM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.6", "tempi":"60.1","dewptm":"10.6", "dewpti":"51.1","hum":"72","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"14.5", "visi":"9.0","pressurem":"1018.4", "pressurei":"30.08","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 202256Z 29007KT 9SM FEW017 16/11 A3008 RMK AO2 SLP184 T01560106" },
{
"date": {
"pretty": "3:56 PM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.0", "tempi":"59.0","dewptm":"10.0", "dewpti":"50.0","hum":"72","wspdm":"14.8", "wspdi":"9.2","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"16.1", "visi":"10.0","pressurem":"1018.0", "pressurei":"30.06","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 202356Z 29008KT 10SM FEW017 15/10 A3006 RMK AO2 SLP180 T01500100 10161 20111 56015" },
{
"date": {
"pretty": "4:56 PM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"9.4", "dewpti":"48.9","hum":"74","wspdm":"16.7", "wspdi":"10.4","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"16.1", "visi":"10.0","pressurem":"1017.7", "pressurei":"30.06","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 210056Z 29009KT 10SM FEW017 14/09 A3005 RMK AO2 SLP177 T01390094" },
{
"date": {
"pretty": "5:56 PM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"10.6", "dewpti":"51.1","hum":"86","wspdm":"16.7", "wspdi":"10.4","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"16.1", "visi":"10.0","pressurem":"1017.7", "pressurei":"30.06","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 210156Z 29009KT 10SM CLR 13/11 A3006 RMK AO2 SLP177 T01280106" },
{
"date": {
"pretty": "6:56 PM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"8.9", "dewpti":"48.0","hum":"77","wspdm":"16.7", "wspdi":"10.4","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1017.9", "pressurei":"30.06","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 210256Z 28009KT 10SM CLR 13/09 A3006 RMK AO2 SLP179 T01280089 55001" },
{
"date": {
"pretty": "7:56 PM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"10.6", "dewpti":"51.1","hum":"93","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"280","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1018.1", "pressurei":"30.07","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 210356Z 28007KT 10SM CLR 12/11 A3007 RMK AO2 SLP181 T01170106" },
{
"date": {
"pretty": "8:56 PM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"8.9", "dewpti":"48.0","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1018.3", "pressurei":"30.07","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 210456Z 00000KT 10SM CLR 11/09 A3007 RMK AO2 SLP183 T01110089" },
{
"date": {
"pretty": "9:56 PM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"8.3", "dewpti":"46.9","hum":"86","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"170","wdire":"South","vism":"16.1", "visi":"10.0","pressurem":"1018.4", "pressurei":"30.08","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 210556Z 17004KT 10SM CLR 11/08 A3008 RMK AO2 SLP184 T01060083 10150 20106 51005" },
{
"date": {
"pretty": "10:56 PM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"7.8", "dewpti":"46.0","hum":"86","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"270","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1018.5", "pressurei":"30.08","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 210656Z 27003KT 10SM CLR 10/08 A3008 RMK AO2 SLP185 T01000078" },
{
"date": {
"pretty": "11:56 PM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"7.8", "dewpti":"46.0","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1018.5", "pressurei":"30.08","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 210756Z 00000KT 10SM CLR 10/08 A3008 RMK AO2 SLP185 T01000078 401610094" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 20, 2015",
"year": "2015",
"mon": "01",
"mday": "20",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"1","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"13", "meantempi":"55","meandewptm":"10", "meandewpti":"50","meanpressurem":"1020", "meanpressurei":"30.12","meanwindspdm":"6", "meanwindspdi":"4","meanwdire":"","meanwdird":"347","meanvism":"11", "meanvisi":"7","humidity":"","maxtempm":"16", "maxtempi":"61","mintempm":"9", "mintempi":"49","maxhumidity":"100","minhumidity":"72","maxdewptm":"11", "maxdewpti":"52","mindewptm":"8", "mindewpti":"46","maxpressurem":"1022", "maxpressurei":"30.17","minpressurem":"1018", "minpressurei":"30.06","maxwspdm":"16", "maxwspdi":"10","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"0", "minvisi":"0","gdegreedays":"4","heatingdegreedays":"10","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"249","monthtodateheatingdegreedaysnormal":"300","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"684","since1julheatingdegreedaysnormal":"1310","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"8.3", "dewpti":"46.9","hum":"89","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1018.5", "pressurei":"30.08","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 210856Z 00000KT 10SM CLR 10/08 A3008 RMK AO2 SLP185 T01000083 51001" },
{
"date": {
"pretty": "1:56 AM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.3", "tempi":"46.9","dewptm":"6.7", "dewpti":"44.1","hum":"90","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1018.8", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 210956Z 00000KT 10SM CLR 08/07 A3009 RMK AO2 SLP188 T00830067" },
{
"date": {
"pretty": "2:56 AM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"7.8", "tempi":"46.0","dewptm":"7.2", "dewpti":"45.0","hum":"96","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1019.0", "pressurei":"30.09","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 211056Z 00000KT 10SM CLR 08/07 A3009 RMK AO2 SLP190 T00780072" },
{
"date": {
"pretty": "3:11 AM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "03",
"min": "11",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:11 AM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "11",
"min": "11",
"tzname": "UTC"
},
"tempm":"8.0", "tempi":"46.4","dewptm":"7.0", "dewpti":"44.6","hum":"93","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"260","wdire":"West","vism":"16.1", "visi":"10.0","pressurem":"1019.2", "pressurei":"30.10","windchillm":"7.3", "windchilli":"45.2","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 211111Z 26003KT 10SM FEW007 08/07 A3010 RMK AO2" },
{
"date": {
"pretty": "3:56 AM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"8.9", "dewpti":"48.0","hum":"100","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1019.2", "pressurei":"30.10","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 211156Z 00000KT 10SM FEW005 SCT007 09/09 A3010 RMK AO2 SLP192 T00890089 10106 20078 51006" },
{
"date": {
"pretty": "4:56 AM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.3", "tempi":"46.9","dewptm":"8.3", "dewpti":"46.9","hum":"100","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"200","wdire":"SSW","vism":"14.5", "visi":"9.0","pressurem":"1019.4", "pressurei":"30.11","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 211256Z 20004KT 9SM FEW005 SCT007 08/08 A3010 RMK AO2 SLP194 T00830083" },
{
"date": {
"pretty": "5:56 AM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"8.9", "dewpti":"48.0","hum":"100","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"180","wdire":"South","vism":"16.1", "visi":"10.0","pressurem":"1019.5", "pressurei":"30.11","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 211356Z 18004KT 10SM FEW007 09/09 A3011 RMK AO2 SLP195 T00890089" },
{
"date": {
"pretty": "6:56 AM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"8.3", "dewpti":"46.9","hum":"93","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"140","wdire":"SE","vism":"16.1", "visi":"10.0","pressurem":"1020.0", "pressurei":"30.12","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 211456Z 14005KT 10SM FEW009 SCT180 09/08 A3012 RMK AO2 SLP200 T00940083 53008" },
{
"date": {
"pretty": "7:56 AM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"7.8", "dewpti":"46.0","hum":"86","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"110","wdire":"ESE","vism":"16.1", "visi":"10.0","pressurem":"1020.5", "pressurei":"30.14","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 211556Z 11004KT 10SM SCT180 10/08 A3014 RMK AO2 SLP205 T01000078" },
{
"date": {
"pretty": "8:56 AM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"9.4", "dewpti":"48.9","hum":"86","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"120","wdire":"ESE","vism":"16.1", "visi":"10.0","pressurem":"1021.0", "pressurei":"30.15","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 211656Z 12006KT 10SM SCT180 12/09 A3015 RMK AO2 SLP210 T01170094" },
{
"date": {
"pretty": "9:56 AM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"10.0", "dewpti":"50.0","hum":"83","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"110","wdire":"ESE","vism":"16.1", "visi":"10.0","pressurem":"1021.2", "pressurei":"30.16","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 211756Z 11007KT 10SM SCT180 13/10 A3016 RMK AO2 SLP212 T01280100 10128 20083 51012" },
{
"date": {
"pretty": "10:56 AM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"8.3", "dewpti":"46.9","hum":"69","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"100","wdire":"East","vism":"16.1", "visi":"10.0","pressurem":"1021.2", "pressurei":"30.16","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 211856Z 10005KT 10SM SCT180 14/08 A3016 RMK AO2 SLP212 T01390083" },
{
"date": {
"pretty": "11:56 AM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"14.4", "tempi":"57.9","dewptm":"6.7", "dewpti":"44.1","hum":"60","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"16.1", "visi":"10.0","pressurem":"1020.8", "pressurei":"30.15","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 211956Z 09004KT 10SM FEW180 14/07 A3015 RMK AO2 SLP208 T01440067" },
{
"date": {
"pretty": "12:56 PM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.6", "tempi":"60.1","dewptm":"6.7", "dewpti":"44.1","hum":"55","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1020.1", "pressurei":"30.13","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 212056Z 00000KT 10SM FEW180 16/07 A3013 RMK AO2 SLP201 T01560067 58010" },
{
"date": {
"pretty": "1:56 PM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"16.1", "tempi":"61.0","dewptm":"6.1", "dewpti":"43.0","hum":"52","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1019.8", "pressurei":"30.12","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 212156Z 00000KT 10SM FEW180 16/06 A3012 RMK AO2 SLP198 T01610061" },
{
"date": {
"pretty": "2:56 PM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"17.2", "tempi":"63.0","dewptm":"4.4", "dewpti":"39.9","hum":"43","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1019.6", "pressurei":"30.11","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 212256Z 00000KT 10SM FEW180 17/04 A3011 RMK AO2 SLP196 T01720044" },
{
"date": {
"pretty": "3:56 PM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"17.2", "tempi":"63.0","dewptm":"6.1", "dewpti":"43.0","hum":"48","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1019.6", "pressurei":"30.11","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 212356Z 00000KT 10SM FEW180 17/06 A3011 RMK AO2 SLP196 T01720061 10178 20128 56006" },
{
"date": {
"pretty": "4:56 PM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.0", "tempi":"59.0","dewptm":"7.2", "dewpti":"45.0","hum":"60","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"30","wdire":"NNE","vism":"16.1", "visi":"10.0","pressurem":"1019.4", "pressurei":"30.11","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 220056Z 03004KT 10SM FEW180 15/07 A3011 RMK AO2 SLP194 T01500072" },
{
"date": {
"pretty": "5:56 PM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"10.6", "dewpti":"51.1","hum":"84","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1020.1", "pressurei":"30.13","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 220156Z 00000KT 10SM FEW180 13/11 A3013 RMK AO2 SLP201 T01330106" },
{
"date": {
"pretty": "6:56 PM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"10.6", "dewpti":"51.1","hum":"84","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1020.3", "pressurei":"30.13","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 220256Z COR 00000KT 10SM FEW180 13/11 A3013 RMK AO2 SLP203 T01330106 53007" },
{
"date": {
"pretty": "7:56 PM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"9.4", "dewpti":"48.9","hum":"80","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"40","wdire":"NE","vism":"16.1", "visi":"10.0","pressurem":"1021.0", "pressurei":"30.15","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 220356Z 04003KT 10SM CLR 13/09 A3015 RMK AO2 SLP210 T01280094" },
{
"date": {
"pretty": "8:56 PM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"7.8", "dewpti":"46.0","hum":"72","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1021.5", "pressurei":"30.17","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 220456Z 00000KT 10SM CLR 13/08 A3017 RMK AO2 SLP215 T01280078" },
{
"date": {
"pretty": "9:56 PM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"7.2", "dewpti":"45.0","hum":"77","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"170","wdire":"South","vism":"16.1", "visi":"10.0","pressurem":"1021.5", "pressurei":"30.17","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 220556Z 17004KT 10SM FEW180 11/07 A3017 RMK AO2 SLP215 T01110072 10172 20106 51012" },
{
"date": {
"pretty": "10:56 PM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"6.7", "dewpti":"44.1","hum":"77","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.0", "pressurei":"30.18","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 220656Z 00000KT 10SM FEW180 11/07 A3018 RMK AO2 SLP220 T01060067" },
{
"date": {
"pretty": "11:56 PM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"8.3", "dewpti":"46.9","hum":"93","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"160","wdire":"SSE","vism":"16.1", "visi":"10.0","pressurem":"1022.1", "pressurei":"30.19","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 220756Z 16006KT 10SM FEW180 09/08 A3018 RMK AO2 SLP221 T00940083 401780078" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 21, 2015",
"year": "2015",
"mon": "01",
"mday": "21",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"0","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"13", "meantempi":"55","meandewptm":"8", "meandewpti":"46","meanpressurem":"1020", "meanpressurei":"30.13","meanwindspdm":"4", "meanwindspdi":"3","meanwdire":"","meanwdird":"128","meanvism":"16", "meanvisi":"10","humidity":"","maxtempm":"18", "maxtempi":"64","mintempm":"8", "mintempi":"46","maxhumidity":"100","minhumidity":"43","maxdewptm":"11", "maxdewpti":"51","mindewptm":"4", "mindewpti":"40","maxpressurem":"1022", "maxpressurei":"30.19","minpressurem":"1019", "minpressurei":"30.08","maxwspdm":"13", "maxwspdi":"8","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"14", "minvisi":"9","gdegreedays":"4","heatingdegreedays":"10","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"15","monthtodateheatingdegreedays":"259","monthtodateheatingdegreedaysnormal":"315","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"694","since1julheatingdegreedaysnormal":"1325","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"8.3", "dewpti":"46.9","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1022.2", "pressurei":"30.19","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 220856Z 00000KT 10SM CLR 11/08 A3019 RMK AO2 SLP222 T01060083 51007" },
{
"date": {
"pretty": "1:56 AM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"10.6", "dewpti":"51.1","hum":"93","wspdm":"16.7", "wspdi":"10.4","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"20","wdire":"NNE","vism":"16.1", "visi":"10.0","pressurem":"1022.8", "pressurei":"30.21","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 220956Z 02009KT 10SM FEW180 12/11 A3020 RMK AO2 SLP228 T01170106" },
{
"date": {
"pretty": "2:56 AM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"8.9", "dewpti":"48.0","hum":"93","wspdm":"14.8", "wspdi":"9.2","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"330","wdire":"NNW","vism":"16.1", "visi":"10.0","pressurem":"1023.3", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 221056Z 33008KT 10SM CLR 10/09 A3022 RMK AO2 SLP233 T01000089" },
{
"date": {
"pretty": "3:56 AM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"7.2", "dewpti":"45.0","hum":"89","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1023.1", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 221156Z 00000KT 10SM CLR 09/07 A3021 RMK AO2 SLP231 T00890072 10122 20083 50009" },
{
"date": {
"pretty": "4:56 AM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"8.3", "dewpti":"46.9","hum":"93","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1023.0", "pressurei":"30.21","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 221256Z 00000KT 9SM SCT180 09/08 A3021 RMK AO2 SLP230 T00940083" },
{
"date": {
"pretty": "5:56 AM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"7.2", "dewpti":"45.0","hum":"86","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"16.1", "visi":"10.0","pressurem":"1023.3", "pressurei":"30.22","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 221356Z 06006KT 10SM FEW012 SCT200 09/07 A3022 RMK AO2 SLP233 T00940072" },
{
"date": {
"pretty": "6:56 AM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"7.8", "dewpti":"46.0","hum":"86","wspdm":"18.5", "wspdi":"11.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"70","wdire":"ENE","vism":"16.1", "visi":"10.0","pressurem":"1023.6", "pressurei":"30.23","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 221456Z 07010KT 10SM FEW012 BKN200 10/08 A3023 RMK AO2 SLP236 T01000078 53004" },
{
"date": {
"pretty": "7:56 AM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"7.2", "dewpti":"45.0","hum":"86","wspdm":"24.1", "wspdi":"15.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"70","wdire":"ENE","vism":"14.5", "visi":"9.0","pressurem":"1023.6", "pressurei":"30.23","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 221556Z 07013KT 9SM FEW009 BKN180 09/07 A3023 RMK AO2 SLP236 T00940072" },
{
"date": {
"pretty": "8:56 AM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"7.2", "dewpti":"45.0","hum":"86","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1025.2", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 221656Z 00000KT 9SM BKN013 BKN180 09/07 A3028 RMK AO2 SLP252 T00940072" },
{
"date": {
"pretty": "9:44 AM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "09",
"min": "44",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:44 PM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "17",
"min": "44",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"8.0", "dewpti":"46.4","hum":"87","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"14.5", "visi":"9.0","pressurem":"1025.6", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"SPECI KSFO 221744Z 09005KT 9SM SCT013 BKN180 10/08 A3029 RMK AO2" },
{
"date": {
"pretty": "9:56 AM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"7.2", "dewpti":"45.0","hum":"80","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"100","wdire":"East","vism":"12.9", "visi":"8.0","pressurem":"1025.8", "pressurei":"30.30","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 221756Z 10004KT 8SM FEW013 BKN180 11/07 A3029 RMK AO2 SLP258 T01060072 10111 20083 53022" },
{
"date": {
"pretty": "10:56 AM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.1", "tempi":"52.0","dewptm":"8.3", "dewpti":"46.9","hum":"83","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1027.0", "pressurei":"30.33","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Mostly Cloudy","icon":"mostlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 221856Z 01003KT 9SM FEW013 BKN180 11/08 A3033 RMK AO2 SLP270 T01110083" },
{
"date": {
"pretty": "11:56 AM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"7.8", "dewpti":"46.0","hum":"72","wspdm":"13.0", "wspdi":"8.1","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"14.5", "visi":"9.0","pressurem":"1026.3", "pressurei":"30.31","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 221956Z 06007KT 9SM FEW013 SCT180 13/08 A3031 RMK AO2 SLP263 T01280078" },
{
"date": {
"pretty": "12:56 PM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"7.8", "dewpti":"46.0","hum":"75","wspdm":"11.1", "wspdi":"6.9","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"12.9", "visi":"8.0","pressurem":"1025.8", "pressurei":"30.30","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 222056Z 06006KT 8SM FEW012 SCT180 12/08 A3030 RMK AO2 SLP258 T01220078 50001" },
{
"date": {
"pretty": "1:56 PM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"8.3", "dewpti":"46.9","hum":"72","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"100","wdire":"East","vism":"12.9", "visi":"8.0","pressurem":"1025.4", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 222156Z 10004KT 8SM SCT180 13/08 A3028 RMK AO2 SLP254 T01330083" },
{
"date": {
"pretty": "2:56 PM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"7.8", "dewpti":"46.0","hum":"69","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1025.5", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 222256Z 00000KT 9SM FEW180 13/08 A3029 RMK AO2 SLP255 T01330078" },
{
"date": {
"pretty": "3:56 PM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.9", "tempi":"57.0","dewptm":"7.8", "dewpti":"46.0","hum":"67","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1025.4", "pressurei":"30.28","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 222356Z 00000KT 8SM FEW180 14/08 A3028 RMK AO2 SLP254 T01390078 10139 20106 56005" },
{
"date": {
"pretty": "4:56 PM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"8.9", "dewpti":"48.0","hum":"75","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"90","wdire":"East","vism":"12.9", "visi":"8.0","pressurem":"1025.6", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 230056Z 09003KT 8SM CLR 13/09 A3029 RMK AO2 SLP256 T01330089" },
{
"date": {
"pretty": "5:56 PM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.8", "tempi":"55.0","dewptm":"7.8", "dewpti":"46.0","hum":"72","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"100","wdire":"East","vism":"16.1", "visi":"10.0","pressurem":"1025.6", "pressurei":"30.29","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 230156Z 10003KT 10SM FEW180 13/08 A3029 RMK AO2 SLP256 T01280078" },
{
"date": {
"pretty": "6:56 PM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"9.4", "dewpti":"48.9","hum":"83","wspdm":"9.3", "wspdi":"5.8","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"60","wdire":"ENE","vism":"16.1", "visi":"10.0","pressurem":"1026.1", "pressurei":"30.30","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 230256Z 06005KT 10SM FEW180 12/09 A3030 RMK AO2 SLP261 T01220094 53007" },
{
"date": {
"pretty": "7:56 PM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"9.4", "dewpti":"48.9","hum":"83","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1026.4", "pressurei":"30.31","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 230356Z 00000KT 9SM FEW180 12/09 A3031 RMK AO2 SLP264 T01220094" },
{
"date": {
"pretty": "8:56 PM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"8.9", "dewpti":"48.0","hum":"83","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1026.4", "pressurei":"30.31","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 230456Z 00000KT 10SM FEW180 12/09 A3031 RMK AO2 SLP264 T01170089" },
{
"date": {
"pretty": "9:56 PM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.0", "tempi":"50.0","dewptm":"8.3", "dewpti":"46.9","hum":"89","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"160","wdire":"SSE","vism":"14.5", "visi":"9.0","pressurem":"1027.0", "pressurei":"30.33","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 230556Z 16003KT 9SM FEW180 10/08 A3033 RMK AO2 SLP270 T01000083 10139 20100 53009" },
{
"date": {
"pretty": "10:56 PM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"7.8", "dewpti":"46.0","hum":"90","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"180","wdire":"South","vism":"14.5", "visi":"9.0","pressurem":"1027.7", "pressurei":"30.35","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 230656Z 18004KT 9SM FEW180 09/08 A3035 RMK AO2 SLP277 T00940078" },
{
"date": {
"pretty": "11:56 PM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"7.8", "dewpti":"46.0","hum":"93","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"160","wdire":"SSE","vism":"14.5", "visi":"9.0","pressurem":"1027.5", "pressurei":"30.35","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 230756Z 16003KT 9SM CLR 09/08 A3035 RMK AO2 SLP275 T00890078 401390083" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 22, 2015",
"year": "2015",
"mon": "01",
"mday": "22",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"0","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"11", "meantempi":"52","meandewptm":"8", "meandewpti":"47","meanpressurem":"1025", "meanpressurei":"30.28","meanwindspdm":"7", "meanwindspdi":"4","meanwdire":"","meanwdird":"79","meanvism":"14", "meanvisi":"9","humidity":"","maxtempm":"14", "maxtempi":"57","mintempm":"8", "mintempi":"47","maxhumidity":"93","minhumidity":"67","maxdewptm":"11", "maxdewpti":"51","mindewptm":"7", "mindewpti":"45","maxpressurem":"1028", "maxpressurei":"30.35","minpressurem":"1022", "minpressurei":"30.19","maxwspdm":"29", "maxwspdi":"18","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"11", "minvisi":"7","gdegreedays":"2","heatingdegreedays":"13","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"14","monthtodateheatingdegreedays":"272","monthtodateheatingdegreedaysnormal":"329","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"707","since1julheatingdegreedaysnormal":"1339","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
},
{
"response": {
"version":"0.1",
"termsofService":"http://www.wunderground.com/weather/api/d/terms.html",
"features": {
"history": 1
}
}
,
"history": {
"date": {
"pretty": "January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "20",
"min": "00",
"tzname": "UTC"
},
"observations": [
{
"date": {
"pretty": "12:56 AM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "00",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 AM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "08",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"8.3", "dewpti":"46.9","hum":"93","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"170","wdire":"South","vism":"14.5", "visi":"9.0","pressurem":"1027.2", "pressurei":"30.34","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 230856Z 17003KT 9SM CLR 09/08 A3033 RMK AO2 SLP272 T00940083 50002" },
{
"date": {
"pretty": "1:56 AM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "01",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 AM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "09",
"min": "56",
"tzname": "UTC"
},
"tempm":"9.4", "tempi":"48.9","dewptm":"8.9", "dewpti":"48.0","hum":"97","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1027.4", "pressurei":"30.34","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Scattered Clouds","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 230956Z 00000KT 9SM SCT180 09/09 A3034 RMK AO2 SLP274 T00940089" },
{
"date": {
"pretty": "2:56 AM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "02",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 AM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "10",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.3", "tempi":"46.9","dewptm":"6.7", "dewpti":"44.1","hum":"90","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1027.5", "pressurei":"30.35","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 231056Z 00000KT 9SM FEW180 08/07 A3035 RMK AO2 SLP275 T00830067" },
{
"date": {
"pretty": "3:56 AM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "03",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 AM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "11",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"7.2", "dewpti":"45.0","hum":"89","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"210","wdire":"SSW","vism":"14.5", "visi":"9.0","pressurem":"1027.4", "pressurei":"30.34","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 231156Z 21003KT 9SM FEW150 09/07 A3034 RMK AO2 SLP274 T00890072 10111 20083 50003" },
{
"date": {
"pretty": "4:56 AM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "04",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 PM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "12",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"6.7", "dewpti":"44.1","hum":"86","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"160","wdire":"SSE","vism":"16.1", "visi":"10.0","pressurem":"1027.3", "pressurei":"30.34","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 231256Z 16003KT 10SM FEW150 09/07 A3034 RMK AO2 SLP273 T00890067" },
{
"date": {
"pretty": "5:56 AM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "05",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 PM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "13",
"min": "56",
"tzname": "UTC"
},
"tempm":"7.8", "tempi":"46.0","dewptm":"7.8", "dewpti":"46.0","hum":"100","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"160","wdire":"SSE","vism":"14.5", "visi":"9.0","pressurem":"1027.4", "pressurei":"30.34","windchillm":"7.1", "windchilli":"44.8","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 231356Z 16003KT 9SM CLR 08/08 A3034 RMK AO2 SLP274 T00780078" },
{
"date": {
"pretty": "6:56 AM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "06",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 PM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "14",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.3", "tempi":"46.9","dewptm":"7.8", "dewpti":"46.0","hum":"97","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"180","wdire":"South","vism":"16.1", "visi":"10.0","pressurem":"1027.9", "pressurei":"30.36","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 231456Z 18003KT 10SM FEW080 08/08 A3036 RMK AO2 SLP279 T00830078 53005" },
{
"date": {
"pretty": "7:56 AM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "07",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 PM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "15",
"min": "56",
"tzname": "UTC"
},
"tempm":"8.9", "tempi":"48.0","dewptm":"7.8", "dewpti":"46.0","hum":"93","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"150","wdire":"SSE","vism":"12.9", "visi":"8.0","pressurem":"1027.8", "pressurei":"30.35","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 231556Z 15003KT 8SM FEW007 09/08 A3035 RMK AO2 SLP278 T00890078" },
{
"date": {
"pretty": "8:56 AM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "08",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 PM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "16",
"min": "56",
"tzname": "UTC"
},
"tempm":"10.6", "tempi":"51.1","dewptm":"8.9", "dewpti":"48.0","hum":"89","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"9.7", "visi":"6.0","pressurem":"1027.9", "pressurei":"30.36","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 231656Z 00000KT 6SM BR FEW007 11/09 A3036 RMK AO2 SLP279 T01060089" },
{
"date": {
"pretty": "9:56 AM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "09",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 PM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "17",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"9.4", "dewpti":"48.9","hum":"83","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1028.4", "pressurei":"30.37","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 231756Z 00000KT 8SM FEW007 12/09 A3037 RMK AO2 SLP284 T01220094 10122 20072 53005" },
{
"date": {
"pretty": "10:56 AM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "10",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 PM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "18",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"10.6", "dewpti":"51.1","hum":"84","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"10","wdire":"North","vism":"12.9", "visi":"8.0","pressurem":"1028.1", "pressurei":"30.36","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 231856Z 01004KT 8SM FEW007 13/11 A3036 RMK AO2 SLP281 T01330106" },
{
"date": {
"pretty": "11:56 AM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "11",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 PM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "19",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"10.6", "dewpti":"51.1","hum":"84","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"14.5", "visi":"9.0","pressurem":"1027.1", "pressurei":"30.33","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 231956Z 00000KT 9SM FEW007 13/11 A3033 RMK AO2 SLP271 T01330106" },
{
"date": {
"pretty": "12:56 PM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "12",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "8:56 PM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "20",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.0", "tempi":"59.0","dewptm":"10.6", "dewpti":"51.1","hum":"75","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1026.3", "pressurei":"30.31","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 232056Z 00000KT 10SM FEW160 15/11 A3031 RMK AO2 SLP263 T01500106 58021" },
{
"date": {
"pretty": "1:56 PM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "13",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "9:56 PM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "21",
"min": "56",
"tzname": "UTC"
},
"tempm":"16.7", "tempi":"62.1","dewptm":"10.0", "dewpti":"50.0","hum":"65","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"350","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1025.8", "pressurei":"30.30","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Partly Cloudy","icon":"partlycloudy","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 232156Z COR 35003KT 10SM FEW160 17/10 A3029 RMK AO2 SLP258 T01670100" },
{
"date": {
"pretty": "2:56 PM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "14",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "10:56 PM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "22",
"min": "56",
"tzname": "UTC"
},
"tempm":"17.8", "tempi":"64.0","dewptm":"7.2", "dewpti":"45.0","hum":"50","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1024.9", "pressurei":"30.27","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 232256Z 00000KT 10SM CLR 18/07 A3027 RMK AO2 SLP249 T01780072" },
{
"date": {
"pretty": "3:56 PM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "15",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "11:56 PM GMT on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "23",
"min": "56",
"tzname": "UTC"
},
"tempm":"18.3", "tempi":"64.9","dewptm":"7.2", "dewpti":"45.0","hum":"48","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"330","wdire":"NNW","vism":"16.1", "visi":"10.0","pressurem":"1024.3", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 232356Z 33003KT 10SM CLR 18/07 A3025 RMK AO2 SLP243 T01830072 10194 20122 58021" },
{
"date": {
"pretty": "4:56 PM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "16",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "12:56 AM GMT on January 24, 2015",
"year": "2015",
"mon": "01",
"mday": "24",
"hour": "00",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.0", "tempi":"59.0","dewptm":"10.0", "dewpti":"50.0","hum":"72","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"80","wdire":"East","vism":"16.1", "visi":"10.0","pressurem":"1024.1", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 240056Z 08004KT 10SM CLR 15/10 A3024 RMK AO2 SLP241 T01500100" },
{
"date": {
"pretty": "5:56 PM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "17",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "1:56 AM GMT on January 24, 2015",
"year": "2015",
"mon": "01",
"mday": "24",
"hour": "01",
"min": "56",
"tzname": "UTC"
},
"tempm":"15.0", "tempi":"59.0","dewptm":"9.4", "dewpti":"48.9","hum":"69","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"290","wdire":"WNW","vism":"16.1", "visi":"10.0","pressurem":"1023.7", "pressurei":"30.23","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 240156Z 29004KT 10SM CLR 15/09 A3023 RMK AO2 SLP237 T01500094" },
{
"date": {
"pretty": "6:56 PM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "18",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "2:56 AM GMT on January 24, 2015",
"year": "2015",
"mon": "01",
"mday": "24",
"hour": "02",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"10.6", "dewpti":"51.1","hum":"84","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1024.5", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 240256Z 00000KT 10SM CLR 13/11 A3025 RMK AO2 SLP245 T01330106 53002" },
{
"date": {
"pretty": "7:56 PM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "19",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "3:56 AM GMT on January 24, 2015",
"year": "2015",
"mon": "01",
"mday": "24",
"hour": "03",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"11.7", "dewpti":"53.1","hum":"90","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1024.7", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 240356Z 00000KT 10SM CLR 13/12 A3026 RMK AO2 SLP247 T01330117" },
{
"date": {
"pretty": "8:56 PM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "20",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "4:56 AM GMT on January 24, 2015",
"year": "2015",
"mon": "01",
"mday": "24",
"hour": "04",
"min": "56",
"tzname": "UTC"
},
"tempm":"13.3", "tempi":"55.9","dewptm":"8.3", "dewpti":"46.9","hum":"72","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1024.5", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 240456Z 00000KT 10SM CLR 13/08 A3026 RMK AO2 SLP245 T01330083 $" },
{
"date": {
"pretty": "9:56 PM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "21",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "5:56 AM GMT on January 24, 2015",
"year": "2015",
"mon": "01",
"mday": "24",
"hour": "05",
"min": "56",
"tzname": "UTC"
},
"tempm":"12.2", "tempi":"54.0","dewptm":"7.8", "dewpti":"46.0","hum":"75","wspdm":"5.6", "wspdi":"3.5","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"200","wdire":"SSW","vism":"16.1", "visi":"10.0","pressurem":"1024.6", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 240556Z 20003KT 10SM CLR 12/08 A3026 RMK AO2 SLP246 T01220078 10194 20122 51001" },
{
"date": {
"pretty": "10:56 PM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "22",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "6:56 AM GMT on January 24, 2015",
"year": "2015",
"mon": "01",
"mday": "24",
"hour": "06",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"9.4", "dewpti":"48.9","hum":"86","wspdm":"7.4", "wspdi":"4.6","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"160","wdire":"SSE","vism":"16.1", "visi":"10.0","pressurem":"1024.5", "pressurei":"30.26","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 240656Z 16004KT 10SM CLR 12/09 A3026 RMK AO2 SLP245 T01170094" },
{
"date": {
"pretty": "11:56 PM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "23",
"min": "56",
"tzname": "America/Los_Angeles"
},
"utcdate": {
"pretty": "7:56 AM GMT on January 24, 2015",
"year": "2015",
"mon": "01",
"mday": "24",
"hour": "07",
"min": "56",
"tzname": "UTC"
},
"tempm":"11.7", "tempi":"53.1","dewptm":"10.0", "dewpti":"50.0","hum":"89","wspdm":"0.0", "wspdi":"0.0","wgustm":"-9999.0", "wgusti":"-9999.0","wdird":"0","wdire":"North","vism":"16.1", "visi":"10.0","pressurem":"1024.2", "pressurei":"30.25","windchillm":"-999", "windchilli":"-999","heatindexm":"-9999", "heatindexi":"-9999","precipm":"-9999.00", "precipi":"-9999.00","conds":"Clear","icon":"clear","fog":"0","rain":"0","snow":"0","hail":"0","thunder":"0","tornado":"0","metar":"METAR KSFO 240756Z 00000KT 10SM CLR 12/10 A3025 RMK AO2 SLP242 T01170100 401940072" }
],
"dailysummary": [
{ "date": {
"pretty": "12:00 PM PST on January 23, 2015",
"year": "2015",
"mon": "01",
"mday": "23",
"hour": "12",
"min": "00",
"tzname": "America/Los_Angeles"
},
"fog":"0","rain":"0","snow":"0","snowfallm":"0.00", "snowfalli":"0.00","monthtodatesnowfallm":"0.00", "monthtodatesnowfalli":"0.00","since1julsnowfallm":"0.00", "since1julsnowfalli":"0.00","snowdepthm":"", "snowdepthi":"","hail":"0","thunder":"0","tornado":"0","meantempm":"13", "meantempi":"56","meandewptm":"9", "meandewpti":"48","meanpressurem":"1026", "meanpressurei":"30.31","meanwindspdm":"3", "meanwindspdi":"2","meanwdire":"","meanwdird":"174","meanvism":"15", "meanvisi":"9","humidity":"","maxtempm":"19", "maxtempi":"67","mintempm":"7", "mintempi":"45","maxhumidity":"100","minhumidity":"48","maxdewptm":"12", "maxdewpti":"53","mindewptm":"7", "mindewpti":"44","maxpressurem":"1028", "maxpressurei":"30.37","minpressurem":"1024", "minpressurei":"30.23","maxwspdm":"19", "maxwspdi":"12","minwspdm":"0", "minwspdi":"0","maxvism":"16", "maxvisi":"10","minvism":"10", "minvisi":"6","gdegreedays":"6","heatingdegreedays":"9","coolingdegreedays":"0","precipm":"0.00", "precipi":"0.00","precipsource":"","heatingdegreedaysnormal":"14","monthtodateheatingdegreedays":"281","monthtodateheatingdegreedaysnormal":"343","since1sepheatingdegreedays":"","since1sepheatingdegreedaysnormal":"","since1julheatingdegreedays":"716","since1julheatingdegreedaysnormal":"1353","coolingdegreedaysnormal":"0","monthtodatecoolingdegreedays":"0","monthtodatecoolingdegreedaysnormal":"0","since1sepcoolingdegreedays":"","since1sepcoolingdegreedaysnormal":"","since1jancoolingdegreedays":"0","since1jancoolingdegreedaysnormal":"0" }
]
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment