REFACTOR: Gave the tonic vowel tier a more representative name

This commit is contained in:
Tim Mahrt
2016-03-16 12:00:19 +01:00
parent 65ac652dea
commit a36d7c8d17
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -114,7 +114,7 @@ def syllabifyTextgrid(isleDict, tg, wordTierName, phoneTierName,
# Create a textgrid with the two syllable-level tiers
syllableTier = tgio.IntervalTier("syllable", syllableEntryList)
tonicSTier = tgio.IntervalTier('tonicSyllable', tonicSEntryList)
tonicPTier = tgio.IntervalTier('tonicPhone', tonicPEntryList)
tonicPTier = tgio.IntervalTier('tonicVowel', tonicPEntryList)
syllableTG = tgio.Textgrid()
syllableTG.addTier(syllableTier)
+1 -1
View File
@@ -30,7 +30,7 @@ syllableTG = praattools.syllabifyTextgrid(isleDict, tg, "word", "phone",
skipLabelList=["",])
tg.addTier(syllableTG.tierDict["syllable"])
tg.addTier(syllableTG.tierDict["tonicSyllable"])
tg.addTier(syllableTG.tierDict["tonicPhone"])
tg.addTier(syllableTG.tierDict["tonicVowel"])