- 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
.
- C++ Primer習題集(第5版)
- 云原生Spring實戰
- 區塊鏈:以太坊DApp開發實戰
- Learn WebAssembly
- Python高效開發實戰:Django、Tornado、Flask、Twisted(第3版)
- Hands-On Swift 5 Microservices Development
- Python機器學習算法與實戰
- MATLAB 2020從入門到精通
- Illustrator CC平面設計實戰從入門到精通(視頻自學全彩版)
- OpenMP核心技術指南
- Learning Nessus for Penetration Testing
- 從Excel到Python數據分析:Pandas、xlwings、openpyxl、Matplotlib的交互與應用
- MongoDB Cookbook(Second Edition)
- DevOps 精要:業務視角
- Node.js 6.x Blueprints