-
Notifications
You must be signed in to change notification settings - Fork 407
Expand file tree
/
Copy pathAngle.json
More file actions
109 lines (109 loc) · 2.78 KB
/
Angle.json
File metadata and controls
109 lines (109 loc) · 2.78 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"Name": "Angle",
"BaseUnit": "Radian",
"XmlDocSummary": "In geometry, an angle is the figure formed by two rays, called the sides of the angle, sharing a common endpoint, called the vertex of the angle.",
"Units": [
{
"SingularName": "Radian",
"PluralName": "Radians",
"FromUnitToBaseFunc": "{x}",
"FromBaseToUnitFunc": "{x}",
"Prefixes": [ "Nano", "Micro", "Milli", "Centi", "Deci" ],
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "rad" ]
},
{
"Culture": "ru-RU",
"Abbreviations": [ "рад" ]
}
]
},
{
"SingularName": "Degree",
"PluralName": "Degrees",
"Prefixes": [ "Nano", "Micro", "Milli" ],
"FromUnitToBaseFunc": "{x} * Math.PI / 180",
"FromBaseToUnitFunc": "{x} * 180 / Math.PI",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "°", "deg" ]
},
{
"Culture": "ru-RU",
"Abbreviations": [ "°" ]
}
]
},
{
"SingularName": "Arcminute",
"PluralName": "Arcminutes",
"FromUnitToBaseFunc": "{x} * Math.PI / (60 * 180)",
"FromBaseToUnitFunc": "{x} * 60 * 180 / Math.PI",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "'", "arcmin", "amin", "min" ]
}
]
},
{
"SingularName": "Arcsecond",
"PluralName": "Arcseconds",
"FromUnitToBaseFunc": "{x} * Math.PI / (3600 * 180)",
"FromBaseToUnitFunc": "{x} * 3600 * 180 / Math.PI",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "″", "arcsec", "asec", "sec" ]
}
]
},
{
"SingularName": "Gradian",
"PluralName": "Gradians",
"FromUnitToBaseFunc": "{x} * Math.PI / 200",
"FromBaseToUnitFunc": "{x} * 200 / Math.PI",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "g" ]
},
{
"Culture": "ru-RU",
"Abbreviations": [ "g" ]
}
]
},
{
"SingularName": "NatoMil",
"PluralName": "NatoMils",
"FromUnitToBaseFunc": "{x} * Math.PI / 3200",
"FromBaseToUnitFunc": "{x} * 3200 / Math.PI",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "mil" ]
}
]
},
{
"SingularName": "Revolution",
"PluralName": "Revolutions",
"FromUnitToBaseFunc": "{x} * 2 * Math.PI",
"FromBaseToUnitFunc": "{x} / (2 * Math.PI)",
"Localization": [
{
"Culture": "en-US",
"Abbreviations": [ "r" ]
},
{
"Culture": "ru-RU",
"Abbreviations": [ "r" ]
}
]
}
]
}