5
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 1 year has passed since last update.

PMTiles で地理院地図Vectorタイルをホストする

Last updated at Posted at 2022-07-17

gsi-mbtiles-tool で取得した地理院地図 Vector タイルを、PMTiles 形式に変換してみました。

スクリーンショット

使用したツールの導入

Python の pmtiles パッケージを使いました。

Raspberry Pi OS で使う場合、Python3 系で使う必要があります。Python2 系ではエラーが出ます。インストールの際のコマンドラインは次のとおりでした。

sudo pip3 install pmtiles

MBTiles から PMTiles への変換

pmtiles-convert --overwrite --gzip experimental_bvmap.mbtiles
 experimental_bvmap.pmtiles
pmtiles-convert --overwrite experimental_bvmap.mbtiles
 experimental_bvmap_raw.pmtiles

これで、gzip 圧縮ををしたものと、していないものの両方ができます。lsでファイルサイズを確認すると、次の通りになります。

-rw-r--r--  1 pi pi  23G Jan  8  2022 experimental_bvmap.mbtiles
-rw-r--r--  1 pi pi  21G Jul 17 18:59 experimental_bvmap.pmtiles
-rw-r--r--  1 pi pi  36G Jul 17 21:11 experimental_bvmap_raw.pmtiles

変換した PMTiles ファイルは、当座、次の URL で実際に触ってみていただくことができます。

いずれの場合も、一応表示できているタイルと、どうもうまく表示されていないタイルとがあるように思います。

5
6
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
5
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?