-
Notifications
You must be signed in to change notification settings - Fork 415
Expand file tree
/
Copy pathHowMuch.unitsnet.json
More file actions
71 lines (71 loc) · 1.56 KB
/
Copy pathHowMuch.unitsnet.json
File metadata and controls
71 lines (71 loc) · 1.56 KB
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
{
"Name": "HowMuch",
"Namespace": "Fictional.Measurements",
"BaseUnit": "Some",
"Units": [
{
"SingularName": "Some",
"PluralName": "Some",
"FromUnitToBaseFunc": "{x}",
"FromBaseToUnitFunc": "{x}",
"Prefixes": [ "Kilo" ],
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "sm" ]
},
{
"Culture": "nb-NO",
"Abbreviations": [ "noe" ],
"AbbreviationsForPrefixes": {
"Kilo": "knoe"
}
}
]
},
{
"SingularName": "Lots",
"PluralName": "Lots",
"FromUnitToBaseFunc": "{x} * 2",
"FromBaseToUnitFunc": "{x} / 2",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "lots", "lts" ]
},
{
"Culture": "nb-NO",
"Abbreviations": [ "mye" ]
}
]
},
{
"SingularName": "Tons",
"PluralName": "Tons",
"FromUnitToBaseFunc": "({x} * 4) * 5",
"FromBaseToUnitFunc": "{x} / (4 * 5)",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "tons" ]
},
{
"Culture": "nb-NO",
"Abbreviations": [ "tonnevis" ]
}
]
},
{
"SingularName": "Magnitude",
"PluralName": "Magnitudes",
"FromUnitToBaseFunc": "Math.Pow({x}, 2)",
"FromBaseToUnitFunc": "Math.Sqrt({x})",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "mag" ]
}
]
}
]
}