Skip To Content

Use ArcPy in a notebook

Several ArcPy modules are available in ArcGIS Notebooks through the Advanced notebook runtime.

With the ArcPy site package, you can perform geographic data analysis, conversion, and management. ArcPy allows you to programmatically run all ArcGIS standard geoprocessing tools and provides helper functions and classes.

Learn more about ArcPy

To use ArcPy in your notebook, ArcGIS Notebook Server must be licensed with the Advanced license, and users must have the privilege to create and run ArcPy notebooks.

ArcPy modules

The modules described below are included with ArcPy in ArcGIS Notebook Server.

Data Access

The data access module, arcpy.da, is a Python module for working with data. It allows control of the edit session, edit operation, improved cursor support (including faster performance), functions for converting tables and feature classes to and from NumPy arrays, and support for versioning, replicas, domains, and subtypes workflows.

Learn more about the Data Access module

Image Analyst

The Image Analyst module, arcpy.ia, is a Python module for managing and processing raster data with functionality provided by the ArcGIS Image Analystextension. It provides access to all the geoprocessing tools in the Image Analyst toolbox as well as functions and classes that allow you to automate your raster processing workflows.

メモ:

By default, not all Python libraries for deep learning raster analytics are installed in ArcGIS Notebook Server runtimes. You can extend a notebook runtime to include these libraries. See the Deep Learning Installation Guide for a manifest of the deep learning packages.

Learn more about the Image Analyst module

Mapping

Arcpy.mp は、ArcPy サイト パッケージの一部である Python サブ モジュールです。 これは、ArcGIS Pro とともにインストールされ、すべてのライセンスで利用可能です。 このモジュールは、主に既存のプロジェクト (*.aprx) とレイヤー ファイル (*.lyr または *.lyrx) のコンテンツを操作するように設計されています。 このモジュールには、エクスポートと印刷を自動化する関数も用意されています。 Arcpy.mp を使用すると、地図製作を自動化することができます。また、このモジュールは、PDF ドキュメントへのエクスポートや、PDF ドキュメントの作成および管理を実行する関数が組み込まれているため、完全なマップ ブックの作成には必須です。

Learn more about the Mapping module

メモ:
The arcpy.mp module is used in ArcGIS Pro; the arcpy.mapping module is used in ArcMap.

Network Analyst

Network Analyst モジュールの arcpy.nax は、新しく使いやすい Python モジュールで、ArcGIS Network Analyst エクステンションで提供されるネットワーク解析機能において使用されます。 以下にアクセスできます。

  • サポートされているすべてのネットワーク解析を実行できるクラス
  • ネットワーク データセットを構成するさまざまなエレメントの接続性に関係する情報を操作できるクラス
  • 入力の事前処理、解析結果の共有、ネットワーク データセットの操作を実行できるジオプロセシング ツール
  • ネットワーク解析を実行できるクラスで使用される特定のデータ タイプの操作に使用できるヘルパー関数およびクラス

Learn more about the Network Analyst module

The legacy module arcpy.na is not included with ArcGIS Notebooks.

Sharing

The arcpy.sharing module shares web layers using Python.

共有モジュールを使用すると、ArcGIS Pro プロジェクトでマップから共有ドラフトを作成してから、ArcGIS EnterpriseArcGIS Online、または ArcGIS Server で共有できます。 共有ドラフトは、Web レイヤーの構成可能なプロパティのセットです。 共有ドラフトの作成は、Python を使用して、マップ、レイヤー、テーブル、またはレイヤーおよびテーブルのリストを Web レイヤーに公開する処理を自動化する最初のステップです。 共有ドラフトは、サービス定義ドラフト (*.sddraft) ファイルとして保存できます。

Learn more about the Sharing module

Spatial Analyst

The Spatial Analyst module is a Python module for analyzing raster data with the functionality provided by the ArcGIS Spatial Analyst extension. It provides access to all the geoprocessing tools available in the Spatial Analyst toolbox as well as other helper functions and classes that allow you to more easily automate your workflows using Python.

Learn more about the Spatial Analyst module

メモ:

The Workflow Manager (arcpy.wmx) module is not included with ArcGIS Notebook Server.

Get started with ArcPy in a notebook

To use ArcPy in a notebook, import its library by running a cell with the following lines:

import arcpy
arcpy.GetInstallInfo()['Version']

View the sample notebooks that are included with ArcGIS Notebook Server to learn how ArcPy can be used in your own notebooks.