PinHua - A Chinese Low-Conflict Romanization System

Goal

One-to-many mapping between a Chinese character and a code
Low conflict rate
Based on Pinyin system
Add two extra letters based on the two leading strokes to reduce conflict rate

Algorithm

1. Generate mapping from character to Pinyin

Choose a Pinyin for each character, using the data source A and data source B.
If a character is in data source B, choose the first Pinyin.
If a character is not in data source B, and has a Pinyin using tone 5, chose the one with tone 5
Otherwise, choose the first PinYin in alphabetical order
Use "uy" to represent "ü"
Add "e" for PinYin without vowel: "ng" -> "eng", "hng" -> "heng"

2. Generate stroke letters

Pick the two leading strokes of each character, using data source C
If there is only one stroke, pick only the first stroke
If the two leading strokes are the same, pick only the first stroke
Convert the one or two strokes to letters as table below

3. Generate PinHua

Insert the one or two stroke-based letters and tone leter before the first vowel letter

Stroke-to-Letter Conversion Table

StrokeLetter
- e
| i
/ a
\ u
~ o

Tone-To-Letter Table

ToneLetter
1 - w
2 / r
3 v v
4 \ n
5 . m

Data Sources

A. Frequency and Pinyin of Chinese characters from http://lingua.mtsu.edu/chinese-computing/statistics/char/list.php?Which=MO (Modern Chinese Character Frequency List by Jun Da (jda@mtsu.edu))
B. Popular proununciation of Chinese characters from http://zein.se/patrick/3000char.html (The most common Chinese characters in order of frequency, by © 2003 – 2009 Patrick Hassel Zein )
C. Stroke of Chinese characters from https://github.com/YQ-YSY/stroke-seq_MB/blob/master/text/%E5%8D%95%E5%AD%97_%E7%AC%94%E9%A1%BA%E7%A0%81_29685%E4%B8%AA.txt (From https://github.com/YQ-YSY/stroke-seq_MB)