0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

# MapShaper で国土地理院のGeoJsonを編集するときによく使うコマンド

Posted at

アプリ開発している時に国土地理院のデータをダウンロードしたが、その際にGeoJson編集でよく使うコマンドを備忘として自分のために残しておく。
できること
mapshaperを使って国土地理院からダウンロードしたデータの編集
・ 離島を認識させること
・ 政令指定都市を区単位ではなく、市単位で整備すること

国土地理院のリンク

MapShaperのリンク

離島を認識させる

最初、下記例のように市を押しても離島が反応しない。
image.png

そこで以下コマンドをコンソールで実行

dissolve N03_001,N03_002,N03_003,N03_004,N03_005,N03_007

実行すると離島も一生に反応するように変わる。
image.png

政令指定都市を区単位ではなく、市単位で整備する

名古屋市のような政令指定都市は最小単位が市のポリゴンでないため、以下のような表示になる

image.png
そこで下記コマンドを実行する。

$ dissolve where='N03_005 != null' N03_004 copy-fields=N03_001,N03_002,N03_003,N03_004 calc='N03_007=null;N03_005=null'

すると下記のように市単位で管理される
image.png

以上、備忘でした。

めっちゃ参考にしたサイト様
https://note.com/kazukio/n/n974da9bb1ffb

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?