- ArcGIS Blueprints
- Eric Pimpler
- 209字
- 2021-07-30 09:50:01
Creating migration patterns for Python toolbox
Just like we did in the first chapter of the book, we'll build an ArcGIS Python Toolbox to hold the code for our application. I won't walk you through every single step like I did in the first chapter, but I will provide some general guidelines instead. If needed, refer to the first chapter for the specifics of how to create an ArcGIS Python Toolbox.
The Python toolboxes encapsulate everything in one place: parameters, validation code, and source code. A Python Toolbox functions like any other toolbox in ArcToolbox
, but it is created entirely in Python and has a file extension of .pyt
. As you learned in the last chapter, it is created programmatically as a class named Toolbox
.
The following steps will help you to create migration patterns for Python toolbox:
- Open ArcCatalog. You can create a Python Toolbox in a folder by right-clicking on the folder and navigating to New | Python Toolbox. In ArcCatalog, there is a folder called Toolboxes; inside the folder, there is a My Toolboxes folder, as shown in the following screenshot. Right-click on this folder and navigate to New | Python Toolbox:
- The name of the toolbox is controlled by the filename. Name the toolbox
MigrationPatterns.pyt
.
- Raspberry Pi for Python Programmers Cookbook(Second Edition)
- 軟件項目管理(第2版)
- Hands-On Machine Learning with scikit:learn and Scientific Python Toolkits
- Apache Spark 2.x Machine Learning Cookbook
- C/C++算法從菜鳥到達人
- Learning Elixir
- Hadoop+Spark大數據分析實戰
- Java程序設計與實踐教程(第2版)
- PySide GUI Application Development(Second Edition)
- Unity 5 for Android Essentials
- Apache Mahout Clustering Designs
- Webpack實戰:入門、進階與調優(第2版)
- Pandas 1.x Cookbook
- 菜鳥成長之路
- Xamarin Cross-platform Application Development(Second Edition)