├── .gitignore ├── HowToContribute.md ├── LICENSE ├── README.md ├── data ├── README.md ├── delete.sh ├── dl │ ├── postal_code │ │ └── .keep │ └── senkyoku │ │ └── .keep ├── graydb │ ├── haaku_more.csv │ ├── haaku_more.sjis.csv │ ├── haaku_sns_results.csv │ └── haaku_sns_results.sjis.csv ├── json │ ├── .keep │ ├── city2senkyoku.json │ ├── postal2senkyoku.json │ └── postal2senkyoku.light.json └── prepare.sh ├── html ├── index.html ├── postal2senkyoku.json └── postal2senkyoku.light.json ├── img └── seijinavi-logo.png ├── package.json ├── popolo ├── areas.csv ├── ep_id_map.csv ├── gdoc_gray_db.csv ├── organizations.csv ├── popolo-out.py └── shugiin_48th_election.json ├── script ├── city.js ├── city2senkyoku.js ├── create_city2senkyoku_json.js ├── create_light_posta2senkyoku_json.js ├── create_postal2senkyoku_json.js ├── datacheck.js ├── get_social_media_accounts.js ├── postal_code_reader.js ├── senkyoku_cell.js └── senkyoku_cell_reader.js ├── test └── script │ ├── city.js │ └── city2senkyoku.js └── wikidata ├── person-prop.csv └── sparql-test.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/.gitignore -------------------------------------------------------------------------------- /HowToContribute.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/HowToContribute.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/data/README.md -------------------------------------------------------------------------------- /data/delete.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/data/delete.sh -------------------------------------------------------------------------------- /data/dl/postal_code/.keep: -------------------------------------------------------------------------------- 1 | keep -------------------------------------------------------------------------------- /data/dl/senkyoku/.keep: -------------------------------------------------------------------------------- 1 | keep 2 | -------------------------------------------------------------------------------- /data/graydb/haaku_more.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/data/graydb/haaku_more.csv -------------------------------------------------------------------------------- /data/graydb/haaku_more.sjis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/data/graydb/haaku_more.sjis.csv -------------------------------------------------------------------------------- /data/graydb/haaku_sns_results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/data/graydb/haaku_sns_results.csv -------------------------------------------------------------------------------- /data/graydb/haaku_sns_results.sjis.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/data/graydb/haaku_sns_results.sjis.csv -------------------------------------------------------------------------------- /data/json/.keep: -------------------------------------------------------------------------------- 1 | keep 2 | -------------------------------------------------------------------------------- /data/json/city2senkyoku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/data/json/city2senkyoku.json -------------------------------------------------------------------------------- /data/json/postal2senkyoku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/data/json/postal2senkyoku.json -------------------------------------------------------------------------------- /data/json/postal2senkyoku.light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/data/json/postal2senkyoku.light.json -------------------------------------------------------------------------------- /data/prepare.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/data/prepare.sh -------------------------------------------------------------------------------- /html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/html/index.html -------------------------------------------------------------------------------- /html/postal2senkyoku.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/html/postal2senkyoku.json -------------------------------------------------------------------------------- /html/postal2senkyoku.light.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/html/postal2senkyoku.light.json -------------------------------------------------------------------------------- /img/seijinavi-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/img/seijinavi-logo.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/package.json -------------------------------------------------------------------------------- /popolo/areas.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/popolo/areas.csv -------------------------------------------------------------------------------- /popolo/ep_id_map.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/popolo/ep_id_map.csv -------------------------------------------------------------------------------- /popolo/gdoc_gray_db.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/popolo/gdoc_gray_db.csv -------------------------------------------------------------------------------- /popolo/organizations.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/popolo/organizations.csv -------------------------------------------------------------------------------- /popolo/popolo-out.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/popolo/popolo-out.py -------------------------------------------------------------------------------- /popolo/shugiin_48th_election.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/popolo/shugiin_48th_election.json -------------------------------------------------------------------------------- /script/city.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/script/city.js -------------------------------------------------------------------------------- /script/city2senkyoku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/script/city2senkyoku.js -------------------------------------------------------------------------------- /script/create_city2senkyoku_json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/script/create_city2senkyoku_json.js -------------------------------------------------------------------------------- /script/create_light_posta2senkyoku_json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/script/create_light_posta2senkyoku_json.js -------------------------------------------------------------------------------- /script/create_postal2senkyoku_json.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/script/create_postal2senkyoku_json.js -------------------------------------------------------------------------------- /script/datacheck.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/script/datacheck.js -------------------------------------------------------------------------------- /script/get_social_media_accounts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/script/get_social_media_accounts.js -------------------------------------------------------------------------------- /script/postal_code_reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/script/postal_code_reader.js -------------------------------------------------------------------------------- /script/senkyoku_cell.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/script/senkyoku_cell.js -------------------------------------------------------------------------------- /script/senkyoku_cell_reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/script/senkyoku_cell_reader.js -------------------------------------------------------------------------------- /test/script/city.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/test/script/city.js -------------------------------------------------------------------------------- /test/script/city2senkyoku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/test/script/city2senkyoku.js -------------------------------------------------------------------------------- /wikidata/person-prop.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/wikidata/person-prop.csv -------------------------------------------------------------------------------- /wikidata/sparql-test.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/codeforjapan/codeforelection/HEAD/wikidata/sparql-test.md --------------------------------------------------------------------------------