Alldailyhumdata.json: Difference between revisions
From Cumulus Wiki
Jump to navigationJump to search
(add category) |
(Populated this page as an example) |
||
Line 1: | Line 1: | ||
[[Category:Cumulus MX]][[Category:JSON Files]] |
[[Category:Cumulus MX]][[Category:JSON Files]] |
||
This file contains daily high and low values for Relative Humidity. |
|||
The file contents follow the following format: |
|||
{| class="wikitable" border="1" |
|||
|- |
|||
!style="width:150px" | Format |
|||
!style="width:600px" | 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 |
|||
|} |
Latest revision as of 07:53, 15 May 2021
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):
|
], | 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):
|
] | Ends the daily highest figures |
} | End of JSON stream |