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?

法務省登記所備付地図データから古道・水路を抽出

Last updated at Posted at 2024-12-23

こんにちは。
「法務省登記所備付地図データのG空間情報センター配信;地図データ変換済」というデータを見つけました。

それから、(古)道(濃黄色)および水路(水色)を抽出し、地図上に拡大表示した例です:

  • ただし今回の方法ではかえって最近の新しい道が抽出できない場合があるようです。

スクリーンショット.jpg

スクリーンショット.jpg

データ

上記例は、香川県小豆郡小豆島町・土庄町 2024年のGeojsonデータを用いたものです。

シェルスクリプト

抽出には下記を用いました。

$ ./extract_path.sh *.geojson > path_extracted.jsonl
extract_path.sh
#!/bin/sh

# function
jq_f() {
  case "$2" in
    ) color="#909000";;) color="#00ffff";;
     *) return;;
 esac
 jq -c '.features[]' "$1" | grep -e "$2"- | sed -r 's/(},\"geometry\":)/,\ \"color\":\ \"'"$color"'\"\1/'
}

# main
for file_geojson in "$@"; do
  jq_f "$file_geojson" 道
  jq_f "$file_geojson"done
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?