phoible / dev

PHOIBLE data and development.
https://phoible.org/
GNU General Public License v3.0
121 stars 30 forks source link

Diacritics to revisit #213

Open bambooforest opened 5 years ago

bambooforest commented 5 years ago

Some combining diacritics don't seem to appear in Phoneme, but do in Allophones:

velarized/pharyngealized (combining tilde overlay) phoible %>% filter(grepl("̴", Phoneme)) %>% select(Phoneme) %>% distinct()

Doesn't appear anywhere afaict:

denasalized (combining not tilde above) phoible %>% filter(grepl("͊", Phoneme)) %>% select(Phoneme) %>% distinct()

nasal emission (combining homothetic) phoible %>% filter(grepl("͋", Phoneme)) %>% select(Phoneme) %>% distinct()

derhoticized (combining breve below) phoible %>% filter(grepl("̮", Phoneme)) %>% select(Phoneme) %>% distinct()

This appears in one phoneme type in one language (638 NENETS):

stiff (combining caron below) phoible %>% filter(grepl("̬", Phoneme)) %>% select(Phoneme) %>% distinct()

This appears in two languages phoible %>% filter(grepl("̚", Phoneme)) %>% select(InventoryID, LanguageName, Phoneme)

InventoryID LanguageName Phoneme 1 1411 Ngomba q̚ 2 1567 Tangale d̪̚

drammock commented 5 years ago

Yes, I noticed this too. Things showing up in allophones but not phonemes is not all that surprising, so I didn't worry about it much. Here are some comments: