Skip to content

Commit

Permalink
Remove redundant entries. (#1063)
Browse files Browse the repository at this point in the history
* Examples
  + 琴平町の次に427番地以降がくる場合(川西) : 766-0001 香川県仲多度郡琴平町
  + 琴平町の次に1~426番地がくる場合(川東) : 766-0002 香川県仲多度郡琴平町

#typingquality

PiperOrigin-RevId: 678037567
  • Loading branch information
phoepsilonix authored Sep 24, 2024
1 parent efc4337 commit c736c7e
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/dictionary/gen_zip_code_seed.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,12 +125,14 @@ def ReadJigyosyoEntry(zip_code, level1, level2, level3, name):
def ParseTownName(level3):
"""Parse town name."""
# Skip some exceptional cases
# 871-0099 中津市の次に番地がくる場合 (大分県中津市)
# 409-0142 小菅村の次に1~663番地がくる場合 (山梨県北都留郡小菅村)
# 409-0211 小菅村の次に664番地以降がくる場合 (山梨県北都留郡小菅村)
# 901-3601 渡名喜村一円 (沖縄県島尻郡渡名喜村)
# 中津市の次に番地がくる場合 : 871-0099 大分県中津市
# 小菅村の次に1~663番地がくる場合 : 409-0142 山梨県北都留郡小菅村
# 小菅村の次に664番地以降がくる場合 : 409-0211 山梨県北都留郡小菅村
# 渡名喜村一円 : 901-3601 沖縄県島尻郡渡名喜村
# 琴平町の次に427番地以降がくる場合(川西) : 766-0001 香川県仲多度郡琴平町
# 琴平町の次に1~426番地がくる場合(川東) : 766-0002 香川県仲多度郡琴平町
if (level3.find(u'以下に掲載がない場合') != -1 or
level3.endswith(u'がくる場合') or
level3.find(u'がくる場合') != -1 or
level3.endswith(u'村一円')):
return ['']

Expand Down

0 comments on commit c736c7e

Please sign in to comment.