-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.json
70 lines (70 loc) · 1.62 KB
/
config.json
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
{
"device" : {
"name" : "My Night Sky Pi",
"location" : {
"latitude" : 51.77655,
"longitude" : 0.11158
},
"mqtt" : {
"enabled": false,
"host": "127.0.0.1"
}
},
"logging": {
"path": "./nsp/logs/",
"level": "INFO",
"format": {
"date": "%Y-%m-%d %H:%M:%S",
"output": "%(asctime)s | %(levelname)-7s | %(message)s"
},
"rotation": {
"size": 10000000,
"backup": 10
}
},
"data": {
"path": "./nsp/data"
},
"nsp" : {
"observation_cooldown" : 5,
"data": {
"path": "observations",
"house_keeping" : {
"delete_after" : 10
}
},
"logging": {
"file": "nsp.log",
"level" : "DEBUG"
},
"capture": {
"shutter": {
"initial": 250000,
"slowest": 15000000,
"fastest": 100
},
"gain": {
"initial": 1.0,
"lowest": 1.0,
"highest": 8.0
},
"white_balance": {
"red": 2.8,
"blue": 1.7
},
"exposure": {
"target": 0.2,
"delay": 5,
"tolerance": 0.1
},
"size": {
"width": 3040,
"height": 3040
},
"format" : {
"file" : "jpg"
},
"timeout_seconds" : 90
}
}
}