vidyut-lipi doesn't handle Grantha/Tamil numbers correctly
Closed this issue · 8 comments
Grantha numbers (and Tamil numbers) aren't a place value system, and are instead representations of the Tamil words for the number. vidyut-lipi doesn't seem to have logic for that.
Transliterate ३२४५
from Devanagari to Grantha.
Expected: ௩௲௨௱௪௰௫
Actual: ३२४५
You can find many more test cases in https://github.com/deepestblue/saulabhyaJS/blob/main/test/saulabhya.test.js#L147
. (wrong issue)
Thanks for filing this issue. I think this is important to support, though I notice that this behavior is not implemented by Aksharamukha or indic_transliteration, so feel free to file issues against those projects as well.
I will probably model this as a default-true flag that the user can disable if so desired.
@deepestblue I have some local code that passes your test suite for converting to and from Grantha numbers.
Some questions:
- How should an invalid number be handled?
- Are there contexts where place value notation would be valuable instead (Modern example: printing out a serial number)? If so, how should these be represented?
- Is this system used in modern Tamil as well? I see mixed evidence, e.g. here I see
100
,௱
, andக00
all used.
Good questions :-)
- Feels like a quality of implementation issue? GIGO? I guess better than that would be to signal an error in whatever mechanism vidyut-lipi uses.
- I'm not sure I've seen Grantha used in modern contexts like that, so I'm not sure this is important.
- Yes, it is, but Tamil numbers are rarely used and aren't taught in schools even in Tamil Nadu (not sure about Sri Lanka, Singapore etc.), so I'm not surprised if there's dwindling awareness.
BTW, https://omniglot.com/language/numbers/malayalam.htm seems to suggest Malayalam numbers are similar, but https://en.wikipedia.org/wiki/Malayalam_numerals says that's an archaic mechanism, and the new one is a simple place-value system. Not sure ...
I've completed my local setup and will close this issue when the code is complete. For the record:
- For now, I don't have any special error handling for this and take a GIGO approach.
- Confirmed.
- For now, I've limited this code to just Grantha, but the logic should be easy to adapt to other scripts that need it.
Pushed and deployed to our online demo.
Looks good to me! All my tests pass :-)