Alldailyhumdata.json

From Cumulus Wiki
Jump to navigationJump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.


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