Skip to content

Instantly share code, notes, and snippets.

@keichan34
Created January 26, 2024 01:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save keichan34/61cd2b4432f93f5158981b5d5e6ba201 to your computer and use it in GitHub Desktop.
Save keichan34/61cd2b4432f93f5158981b5d5e6ba201 to your computer and use it in GitHub Desktop.
政令指定都市の自治体コード
// 政令指定都市 (元データでは行政区になっているが、私達は区域全体でまとめたい(東京23特別区以外))
// この配列は、行例指定都市の公共団体コードの頭3または4桁を含む
const DESIGNATED_CITIES = [
/^011/, // 北海道札幌市
/^041/, // 宮城県仙台市
/^111/, // 埼玉県さいたま市
/^121/, // 千葉県千葉市
/^141(?!3|5)/, // 神奈川県横浜市
/^1413/, // 神奈川県川崎市
/^1415/, // 神奈川県相模原市
/^151/, // 新潟県新潟市
/^221(?!3)/, // 静岡県静岡市
/^2213/, // 静岡県浜松市
/^231/, // 愛知県名古屋市
/^261/, // 京都府京都市
/^271(?!4)/, // 大阪府大阪市
/^2714/, // 大阪府堺市
/^281/, // 兵庫県神戸市
/^331/, // 岡山県岡山市
/^341/, // 広島県広島市
/^401(?!3)/, // 福岡県北九州市
/^4013/, // 福岡県福岡市
/^431/, // 熊本県熊本市
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment