Skip to content

Commit 607a40e

Browse files
authored
Add ReciprocalLength (#954)
1 parent 0202c07 commit 607a40e

29 files changed

+3467
-0
lines changed
Lines changed: 131 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,131 @@
1+
{
2+
"Name": "ReciprocalLength",
3+
"BaseUnit": "InverseMeter",
4+
"XmlDoc": "Reciprocal (Inverse) Length is used in various fields of science and mathematics. It is defined as the inverse value of a length unit.",
5+
"XmlDocRemarks": "https://en.wikipedia.org/wiki/Reciprocal_length",
6+
"BaseDimensions": {
7+
"L": -1
8+
},
9+
"Units": [
10+
{
11+
"SingularName": "InverseMeter",
12+
"PluralName": "InverseMeters",
13+
"FromUnitToBaseFunc": "x",
14+
"FromBaseToUnitFunc": "x",
15+
"Localization": [
16+
{
17+
"Culture": "en-US",
18+
"Abbreviations": [ "m⁻¹", "1/m" ]
19+
}
20+
]
21+
},
22+
{
23+
"SingularName": "InverseCentimeter",
24+
"PluralName": "InverseCentimeters",
25+
"FromUnitToBaseFunc": "x*1e2",
26+
"FromBaseToUnitFunc": "x/1e2",
27+
"Localization": [
28+
{
29+
"Culture": "en-US",
30+
"Abbreviations": [ "cm⁻¹", "1/cm" ]
31+
}
32+
]
33+
},
34+
{
35+
"SingularName": "InverseMillimeter",
36+
"PluralName": "InverseMillimeters",
37+
"FromUnitToBaseFunc": "x*1e3",
38+
"FromBaseToUnitFunc": "x/1e3",
39+
"Localization": [
40+
{
41+
"Culture": "en-US",
42+
"Abbreviations": [ "mm⁻¹", "1/mm" ]
43+
}
44+
]
45+
},
46+
{
47+
"SingularName": "InverseMile",
48+
"PluralName": "InverseMiles",
49+
"FromUnitToBaseFunc": "x/1609.34",
50+
"FromBaseToUnitFunc": "x*1609.34",
51+
"Localization": [
52+
{
53+
"Culture": "en-US",
54+
"Abbreviations": [ "mi⁻¹", "1/mi" ]
55+
}
56+
]
57+
},
58+
{
59+
"SingularName": "InverseYard",
60+
"PluralName": "InverseYards",
61+
"FromUnitToBaseFunc": "x/0.9144",
62+
"FromBaseToUnitFunc": "x*0.9144",
63+
"Localization": [
64+
{
65+
"Culture": "en-US",
66+
"Abbreviations": [ "yd⁻¹", "1/yd" ]
67+
}
68+
]
69+
},
70+
{
71+
"SingularName": "InverseFoot",
72+
"PluralName": "InverseFeet",
73+
"FromUnitToBaseFunc": "x/0.3048",
74+
"FromBaseToUnitFunc": "x*0.3048",
75+
"Localization": [
76+
{
77+
"Culture": "en-US",
78+
"Abbreviations": [ "ft⁻¹", "1/ft" ]
79+
}
80+
]
81+
},
82+
{
83+
"SingularName": "InverseUsSurveyFoot",
84+
"PluralName": "InverseUsSurveyFeet",
85+
"FromUnitToBaseFunc": "x*3937/1200",
86+
"FromBaseToUnitFunc": "x*1200/3937",
87+
"Localization": [
88+
{
89+
"Culture": "en-US",
90+
"Abbreviations": [ "ftUS⁻¹", "1/ftUS" ]
91+
}
92+
]
93+
},
94+
{
95+
"SingularName": "InverseInch",
96+
"PluralName": "InverseInches",
97+
"FromUnitToBaseFunc": "x/2.54e-2",
98+
"FromBaseToUnitFunc": "x*2.54e-2",
99+
"Localization": [
100+
{
101+
"Culture": "en-US",
102+
"Abbreviations": [ "in⁻¹", "1/in" ]
103+
}
104+
]
105+
},
106+
{
107+
"SingularName": "InverseMil",
108+
"PluralName": "InverseMils",
109+
"FromUnitToBaseFunc": "x/2.54e-5",
110+
"FromBaseToUnitFunc": "x*2.54e-5",
111+
"Localization": [
112+
{
113+
"Culture": "en-US",
114+
"Abbreviations": [ "mil⁻¹", "1/mil" ]
115+
}
116+
]
117+
},
118+
{
119+
"SingularName": "InverseMicroinch",
120+
"PluralName": "InverseMicroinches",
121+
"FromUnitToBaseFunc": "x/2.54e-8",
122+
"FromBaseToUnitFunc": "x*2.54e-8",
123+
"Localization": [
124+
{
125+
"Culture": "en-US",
126+
"Abbreviations": [ "µin⁻¹", "1/µin" ]
127+
}
128+
]
129+
}
130+
]
131+
}

0 commit comments

Comments
 (0)