Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yutotnh/m-ken-s-shi
都道府県と市区町村のイニシャルから該当する市区町村を表示するWebページ
https://github.com/yutotnh/m-ken-s-shi
github-pages python python3 react typescript vite
Last synced: about 2 months ago
JSON representation
都道府県と市区町村のイニシャルから該当する市区町村を表示するWebページ
- Host: GitHub
- URL: https://github.com/yutotnh/m-ken-s-shi
- Owner: yutotnh
- License: mit
- Created: 2024-06-01T16:45:33.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-06-03T13:35:27.000Z (7 months ago)
- Last Synced: 2024-06-03T20:27:14.957Z (7 months ago)
- Topics: github-pages, python, python3, react, typescript, vite
- Language: TypeScript
- Homepage: https://yutotnh.github.io/m-ken-s-shi/
- Size: 259 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# M県S市
都道府県と市区町村のアルファベットを入力して、都道府県と市区町村の名前を出力するWebページのソースコードです。
市町村の情報は2023年6月現在のものです。
## 市区町村のJSONデータ(municipalities.json)の作成方法
以下のコマンドを実行してください。
2024年6月2日に生成できた方法です。
KEN_ALL_ROME.CSVは、[郵便番号データダウンロード/住所の郵便番号(ローマ字・zip形式)](https://www.post.japanpost.jp/zipcode/dl/roman-zip.html)からダウンロードしてください。
```bash
cd src/assets
wget https://www.post.japanpost.jp/zipcode/dl/roman/KEN_ALL_ROME.zip
unzip KEN_ALL_ROME.zip
./convert_ken_all_rome.sh KEN_ALL_ROME.CSV >municipalities.json
rm KEN_ALL_ROME.CSV KEN_ALL_ROME.zip
```