Alldailyhumdata.json


This file contains daily high and low values for Relative Humidity.

The file contents follow the following format:

Format Function
{ Start of JSON stream
"minHum":[ Signifies that the daily minimums follow
[JavaScript_Date_object,value] Multiple data pairs (each occurrence is separated by a comma between closing bracket of one pair and opening bracket of next):
  • The JavaScript Date object contains the number of milliseconds since 00:00:00.000 UTC on 1st January 1970, that date and time is known as the UNIX Epoch.
  • The value is numerical, in this case a positive integer up to 100
], Ends the daily lowest figures
"maxHum":[ Signifies that the daily maximum follow
[JavaScript_Date_object,value] Multiple data pairs (each occurrence is separated by a comma between closing bracket of one pair and opening bracket of next):
  • The JavaScript Date object contains the number of milliseconds since 00:00:00.000 UTC on 1st January 1970, that date and time is known as the UNIX Epoch.
  • The value is numerical, in this case a positive integer up to 100
] Ends the daily highest figures
} End of JSON stream