Commit 247b2f3
committed
Fix a typo at ȳ(547 nm) in CIE 1931 2° observer table
The tabulated value was 0.9874812.
Per CIE 018:2019 Table 6 (DOI 10.25039/CIE.DS.xvudnb9b), the correct
value is 0.9874182. Verification from CIE published data:
```
import urllib.request, csv, io
url = "https://files.cie.co.at/CIE_xyz_1931_2deg.csv"
data = urllib.request.urlopen(url).read().decode()
for row in csv.reader(io.StringIO(data)):
if row and row[0].strip() == "547":
print(f"y-bar at 547nm = {row[2]}")
break
```
Signed-off-by: Jonathan Swartz <jonathan@jswartz.info>1 parent 8c19f30 commit 247b2f3
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
403 | 403 | | |
404 | 404 | | |
405 | 405 | | |
406 | | - | |
| 406 | + | |
407 | 407 | | |
408 | 408 | | |
409 | 409 | | |
| |||
0 commit comments