-
Notifications
You must be signed in to change notification settings - Fork 0
/
defaults.json
58 lines (58 loc) · 1.41 KB
/
defaults.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
{
"relation-dimension-unit": {
"market cap": ["currency","USD"],
"population": ["count", "people"],
"gdp": ["currency", "USD"],
"calories": ["energy","calories"],
"length": ["length","m"],
"weight": ["mass","kg"],
"occurred at": ["year","AD"],
"emissions": ["",""],
"area": ["area", "sq km"],
"net worth": ["currency", "USD"],
"revenue": ["currency", "USD"],
"profits": ["currency", "USD"],
"birth": ["year","AD"]
},
"dimension-units": {
"currency": "USD",
"energy": "joules",
"length": "m",
"mass": "kg",
"year": "AD"
},
"relation-units": {
"GDP": "USD",
"Market Cap": "USD",
"Revenue": "USD",
"Birth": "AD",
"Occurred": "AD",
"Area": "sq km",
"Age": "count",
"Population": "count"
},
"relation-notations": {
"Age": "year"
},
"relation-limits":{
"Age": [0,150]
},
"unit-notations": {
"count": "american",
"USD": "american",
"AD": "year",
"BC": "american",
"bytes": "metric",
"watts": "metric",
"%": "year",
"per 1000": "year"
},
"unit-limits": {
"BC": [1,1e21],
"AD": [1,2100],
"Bytes": [1,1e27],
"USD": [1e3,1e15],
"%": [1,100],
"per 1000": [1,1000]
}
}