0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

jupyter notebook と folium で地理院地図を表示

Posted at

jupyter notebook と folium で地理院地図を表示します。

  • 動作確認した環境

  • windows 10, Google chrome 91.0.4472.124

  • python 3.7.0, jupyter 1.0.0, folium 0.12.1

  • 実行手順

  1. 作業フォルダを作成し、コマンドプロンプトでその作業フォルダに移動
  2. python の仮想環境を作成し、仮想環境をアクティベート
  3. pipコマンドを利用して、jupyter, folium, および関連のパッケージをインストール
pip install jupyter folium
  1. jupyter notebook を起動
  2. 新しいノートブックを作成し、以下のコードをコピーして実行
import folium
map = folium.Map(location = [35.6804, 139.7670],
              zoom_start = 15,
              tiles = "https://cyberjapandata.gsi.go.jp/xyz/std/{z}/{x}/{y}.png",
              attr = "地理院地図",
              crs = 'EPSG3857')
folium.LatLngPopup().add_to(map)
map
  • 2行目のlocationで最初に表示される地図の中心座標(緯度経度)を指定
  • 3行目のzoom_startで、最初に表示される地図のズームレベルを指定
  • 4行目のtitesで表示する地理院地図タイルのURLを指定 (指定可能なタイルや記述方法は地理院地図タイル一覧、Folium documentation を参照)

  • (おまけ) 5行目のLatLngPopup()を指定すると、地図の任意位置をクリックするとその地点の座標(緯度経度)が表示されます
  • 6行目で5行目までに準備した地図をブラウザ中に表示
0
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?