-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformat.json
More file actions
73 lines (57 loc) · 929 Bytes
/
format.json
File metadata and controls
73 lines (57 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
infoList = [
{
"general weather" : {
"temp" : "v",
"condition" : "v",
"station" : "v",
"sunrise" : "v",
"sunset" : "v",
"moonrise" : "v",
"moonset" : "v",
"humidity" : "v",
"rainfall" : "v",
"wind" : "v",
"sunshine" : "v",
}
},
{
"tide info" : {
"high1" : "v",
"high1 time" : "v",
"high2" : "v",
"high2 time" : "v",
"low1" : "v",
"low1 time" : "v",
"low2" : "v",
"low2 time" : "v"
}
},
{
"three day forecast" : [
{
"first day" : {
"date" : "v",
"condition" : "v",
"wind" : "v",
"sea" : "v"
}
},
{
"second day" : {
"date" : "v",
"condition" : "v",
"wind" : "v",
"sea" : "v"
}
},
{
"third day" : {
"date" : "v",
"condition" : "v",
"wind" : "v",
"sea" : "v"
}
}
]
}
]