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

Geocoding

The Geocoding module, arcpy.geocoding, allows you to explore and set locator properties and automate geocoding workflows. Geocoding is the process of transforming a description of a location—such as a pair of coordinates, an address, or a name of a place—to a location on the earth's surface. A locator is the tool used to perform geocoding operations. With this module, you can view and modify properties on the locator to tune it to your specific geocoding needs by customizing it for performance or quality. You can also use this module to perform various geocoding operations, including finding the location of a place or address, finding the closest place or address to a given location, or generating a set of autocomplete suggestions for partial input.

Learn more about the Geocoding module

Image Analysis

The Image Analysis module, arcpy.ia, is a Python module for managing and processing imagery and raster data. The module also includes functionality provided by the ArcGIS Image Analyst extension, such as all of the geoprocessing functions, as well as advanced functions and classes that allow you to automate your raster processing workflows.

Learn more about the Image Analysis module

Mapping

Arcpy.mp to moduł podrzędny w języku Python, który jest częścią pakietu witryny ArcPy. Zostaje zainstalowany z oprogramowaniem ArcGIS Pro i jest dostępny dla wszystkich licencji. Został zaprojektowany przede wszystkim na potrzeby manipulowania zasobami istniejących projektów (.aprx) i plikami warstw (.lyr lub .lyrx). Udostępnia także funkcje umożliwiające zautomatyzowanie eksportowania i drukowania. Arcpy.mp może być używany do automatyzacji produkcji map i jest wymagany przy tworzeniu kompletnych książek z mapami, ponieważ obejmuje funkcje eksportu do dokumentów PDF, ich tworzenia i zarządzania nimi.

Learn more about the Mapping module

Notatka:
The arcpy.mp module is used in ArcGIS Pro; the arcpy.mapping module is used in ArcGIS Desktop.

Metadata

The Metadata module, arcpy.metadata, is a Python module for accessing and managing an item's metadata. You can explore information describing your maps and data and automate your workflows, particularly for managing standards-compliant geospatial metadata.

Learn more about the Metadata module

Network Analyst

Moduł Network Analyst (arcpy.nax) to nowoczesny i prosty w obsłudze moduł języka Python przeznaczony do pracy z funkcjami analizy sieciowej udostępnianymi w Rozszerzenie ArcGIS Geostatistical Analyst. Zapewnia dostęp do następujących elementów:

  • Klasy umożliwiające wykonywanie wszystkich obsługiwanych operacji analizy sieciowej
  • Klasy umożliwiające pracę z informacjami na temat połączeń różnych elementów wchodzących w skład zestawu danych sieciowych
  • Narzędzia geoprzetwarzania umożliwiające wstępne przetwarzanie danych wejściowych, udostępnianie wyników analizy oraz pracę z zestawami danych sieciowych
  • Funkcje i klasy pomocnicze służące do pracy z określonymi typami danych używanymi przez klasy przeprowadzające analizę sieciową

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.

Moduł udostępniania umożliwia utworzenie udostępniającej wersji roboczej z poziomu projektu ArcGIS Pro, którą można następnie udostępnić w oprogramowaniu ArcGIS Enterprise, usłudze ArcGIS Online lub na serwerze ArcGIS Server. Udostępniająca wersja robocza to konfigurowalny zestaw właściwości na potrzeby warstwy internetowej. Utworzenie udostępniającej wersji roboczej jest pierwszym krokiem w automatyzacji publikowania mapy, warstwy, tabeli lub listy warstw i tabel w warstwie internetowej z użyciem języka Python. Udostępniającą wersję roboczą można następnie zapisać jako plik wersji roboczej definicji usługi (.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

Notatka:

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.