LoginSignup
0
1

More than 1 year has passed since last update.

ArcGISで地図を作成し保存する

Posted at

はじめに

ArcGIS API for Pythonで地図を作成し、保存する方法をまとめた

前提

from arcgis.gis import GIS
# GISクラスの使用
gis = GIS()

地図の作成

# 品川区の地図作成
map = gis.map('品川区')

地図の保存

# 地図を保存
map.save()

※保存する際にタグなどのプロパティを設定することが可能です

# 画像の情報を設定(タイトルなど)
sinagawaMapProperty = {'title':'品川区マップ',
            'snippet':'品川区の地図を作成',
            'tags':'sinagawa',
            'extent':map.extent
            }
# 地図を保存
map.save(item_properties=sinagawaMapProperty)
0
1
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
1