LoginSignup
0
0

More than 3 years have passed since last update.

【メモ】市区町村データ、市区町村コード付きでデータベースに入れる

Posted at

テスト用の市区町村データの突っ込み方

psql -h localhost  -U residential_map -p 5432 residential < ~/Downloads/2019-03-24-full-buckup.sql

sqlの中身はこんな感じ stdinは知らなかった。

COPY public.mst_city (city_id, pref_id, name, furi, lat, lng) FROM stdin;
01215   1   美唄市   ビバイシ    \N  \N
01216   1   芦別市   アシベツシ \N  \N
01217   1   江別市   エベツシ    \N  \N
01218   1   赤平市   アカビラシ \N  \N
01219   1   紋別市   モンベツシ \N  \N


...


01211   1   網走市   アバシリシ 44.0206058999999996 144.273483700000014
\.

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0