12
6

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 5 years have passed since last update.

Pythonで地理情報のマッピング!cartopy使ってみた

Last updated at Posted at 2017-12-10

Pythonで地図にデータをマッピングできるライブラリのcartopyを使おうとしたらハマったのでやり方を残しておきます。
Anacondaを使うと簡単にインストールできるらしいのですが、この記事は素のPythonでやる人向けです。

セットアップ

cartopy自体はpipでインストールできるのですが、別言語で書かれたライブラリを使ったりして依存関係が複雑なのでメモ🖋
大まかな流れは...
0. Xcode’s command-line の確認

  1. PROJ.4のインストール
  2. GEOSのインストール
  3. shapelyおよびcartopyのインストール(但しバイナリファイルを除く)

まずは公式インストールガイドをみてね。

0. Xcode’s command-line の確認

ガイドには記載がないけどハマったのでメモ。
macOSをアップデートした際にコマンドラインツールが正常にインストールされていないことがあるらしい。
stdio.h file not found error on macOS Sierra - GitHub

解決するには、

$ xcode-select --install

でOK。

1.PROJ.4のインストール

PRO4.Jは緯度経度を扱うためのライブラリ。
UNIXのプログラムのビルドに詳しい人ならなんてことないのかもしれないけど、自分はAutoToolの使い方をしらなかったので困りました。

まずはPRO4.Jのガイドを読んで、GitHubからソースを取得。
その場合自分でコンパイル→インストールする必要があるので...

  1. pro4.j のディレクトリ内で autogen.sh を実行。
  2. ./configure コマンドでmakeコマンドのための設定ファイルを作成
  3. make → make install でコンパイルしてインストール。

2. GEOSのインストール

GEOSは(多分)3Dの描画をするライブラリ。

こちらは初めからconfigureが用意されているので、
./configure → make → make install でOK。

3. shapelyおよびcartopyのインストール(但しバイナリファイルを除く)

cartopyの依存ライブラリがDLL地獄(依存ライブラリのバージョンが違うことによる問題)に陥っているらしく、pipでインストールする際にはバイナリファイルを除く必要がある。以下も参照。
cartopy possibly kills the kernel when using ipython/jupyter notebook - GitHub

  1. すでにshapely, cartopyがインストールされている場合は削除。
pip uninstall shapely
pip uninstall cartopy
  1. バイナリファイルを除くオプションを付けてインストール
pip install shapely cartopy --no-binary shapely --no-binary cartopy  

セットアップ手順は以上です。

使ってみる

公式サイトのソースコードを引用。

import cartopy.crs as ccrs
import matplotlib.pyplot as plt

ax = plt.axes(projection=ccrs.PlateCarree())
ax.coastlines()

plt.show()

結果
Screen Shot 2017-12-10 at 16.15.32.png

これは一番シンプルなやつだけど、色も形も幅広く変えられそうなので楽しみ!

12
6
1

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
12
6

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?