Learn R Programming

phonics (version 1.1.0)

cologne: Cologne Phonetic Name Coding

Description

The Cologne phonetic name coding procedure.

Usage

cologne(word, maxCodeLen = NULL)

Arguments

word

string or vector of strings to encode

maxCodeLen

maximum length of the resulting encodings, in characters

Value

the Cologne encoded character vector

Caveats

The cologne algorithm is only defined for inputs over the standard German alphabet, i.e., "A-Z,", "<U+00C4>," "<U+00D6>," "<U+00DC>," and "<U+00DF>. For inputs outside this range, the output is undefined.

Details

The variable word is the name to be encoded. The variable maxCodeLen is the limit on how long the returned name code should be. The default is 4.

References

Hans Joachim Postel. "Die Koelner Phonetik. Ein Verfahren zur Identifizierung von Personennamen auf der Grundlage der Gestaltanalyse." IBM-Nachrichten 19. Jahrgang, 1969, p. 925-931.

See Also

Other phonics: caverphone, lein, metaphone, mra_encode, nysiis, onca, phonex, rogerroot, soundex, statcan

Examples

Run this code
# NOT RUN {
lein("William")
lein(c("Peter", "Peady"))
lein("Stevenson", maxCodeLen = 8)

# }

Run the code above in your browser using DataLab