1 / 21

Understanding ArcGIS Toolbox and Environment Settings for Advanced Geoprocessing

This guide explores the workings of ArcGIS Toolboxes and Environment Settings. Users will learn how to define and manage standard toolboxes, set parameters using strings or objects, and understand the five categories of environment settings: General, Coverage, Geodatabase, Raster Geodatabase, and Raster Analysis. The documentation includes specifications for complex parameters and objects, such as spatial references and value tables. Detailed examples illustrate how to retrieve properties using Describe in Python, enhancing geoprocessing capabilities.

brook
Télécharger la présentation

Understanding ArcGIS Toolbox and Environment Settings for Advanced Geoprocessing

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Geography 465 Working with ArcGIS Tools and Environment Settings

  2. Toolbox defined

  3. Standard Toolboxes

  4. Parameters are specified using strings or objects

  5. Environment Settings Divided into five categories: • General • Coverage • Geodatabase • Raster geodatabase • Raster analysis Names are unique; same constraints as tool names

  6. Environment Setting

  7. Environment Setting

  8. Save Environment Setting

  9. Save Environment Setting

  10. Complex Parameters - Objects For example: Spatial references, value tables, weighted overlay tables, and remap tables Read/write properties Each tool documentation has the specification

  11. Complex Parameters - Objects

  12. Retrieving properties usingDescribe # Workspace dscWS = gp.Describe (“Seattle.mdb”) # FeatureClass Properties dscFC = gp.Describe (“Seattle.mdb\\Parcels”) # DataSet Properties dscFD = gp.Describe (“Seattle.mdb\\Census)

  13. Describe method - 9.3

  14. Exercising the Geoprocessor and Python Scripting

More Related