Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/neelsmith/greekscientificorthography.jl
Implementation of an orthographic system for ancient Greek mathematical and scientific texts
https://github.com/neelsmith/greekscientificorthography.jl
greek milesian-notation orthography
Last synced: 22 days ago
JSON representation
Implementation of an orthographic system for ancient Greek mathematical and scientific texts
- Host: GitHub
- URL: https://github.com/neelsmith/greekscientificorthography.jl
- Owner: neelsmith
- License: gpl-3.0
- Created: 2024-06-04T10:46:20.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-29T16:10:11.000Z (5 months ago)
- Last Synced: 2024-10-15T16:56:21.494Z (2 months ago)
- Topics: greek, milesian-notation, orthography
- Language: Julia
- Homepage: https://neelsmith.quarto.pub/greekscientificorthography/
- Size: 261 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# GreekScientificOrthography.jl
Implementation of an orthographic system for ancient Greek mathematical and scientific texts.
## Quick start
- Validate the orthography of a string:
```julia-repl
julia > using GreekScientificOrthography, Orthography
julia > ortho = stemortho()
julia > archimedes = "ἡ ΓΕ πρὸς ΓΗ μείζονα λόγον ἔχει ἤπερ φοαʹ πρὸς ρνγʹ."
julia > validstring(archimedes, ortho)
true
```- Tokenize a string:
```julia-repl
julia > tkns = tokenize(archimedes, ortho)
12-element Vector{OrthographicToken}:
OrthographicToken("ἡ", LexicalToken())
OrthographicToken("ΓΕ", FigureLabelToken())
OrthographicToken("πρὸς", LexicalToken())
OrthographicToken("ΓΗ", FigureLabelToken())
OrthographicToken("μείζονα", LexicalToken())
OrthographicToken("λόγον", LexicalToken())
OrthographicToken("ἔχει", LexicalToken())
OrthographicToken("ἤπερ", LexicalToken())
OrthographicToken("φοαʹ", MilesianIntegerToken())
OrthographicToken("πρὸς", LexicalToken())
OrthographicToken("ρνγʹ", MilesianIntegerToken())
OrthographicToken(".", PunctuationToken())
```## Documentation
See documentation on [quarto pub](https://neelsmith.quarto.pub/greekscientificorthography/)