官术网_书友最值得收藏!

Accessing ArcPy modules with Python

Up to this point, we have covered some basic concepts related to ArcPy. In addition to the basic ArcPy site package, there are a number of modules that you can use to access specific functionality. These modules must be specifically imported into your scripts before you can use the functionality provided. In this recipe, you will learn how to import these modules.

Getting ready

In addition to providing access to tools, functions, and classes, ArcPy also provides several modules. Modules are purpose-specific Python libraries containing functions and classes. The modules include a Mapping module (arcpy.mapping), a Data Access module (arcpy.da), a Spatial Analyst module (arcpy.sa), a Geostatistical module (arcpy.ga), a Network Analyst module (arcpy.na), and a Time module (arcpy.time). To use the functions and classes included with each of these modules you must specifically import their associated libraries.

How to do it…

Follow these steps to learn how to use the functions and classes provided by the arcpy.mapping module:

  1. Open c:\ArcpyBook\Ch2\Crime_Ch2.mxd with ArcMap.
  2. Open the Python window.
  3. Import the arcpy.mapping module:
    import arcpy.mapping as mapping
  4. Get a reference to the current map document (Crime_Ch2.mxd):
    mxd = mapping.MapDocument("CURRENT")
  5. Call the arcpy.mapping.ListLayers function:
    print mapping.ListLayers(mxd)

    This will return a list of all layers in the map document and print these to the shell window:

    [<map layer u'City of Austin Bldg Permits'>, <map layer u'Hospitals'>, <map layer u'Schools'>, <map layer u'Streams'>, <map layer u'Streets'>, <map layer u'Streams_Buff'>, <map layer u'Floodplains'>, <map layer u'2000 Census Tracts'>, <map layer u'City Limits'>, <map layer u'Travis County'>]
    

Access to all the functions and objects available in the Mapping module is done in the same way.

How it works…

Each of the modules provided by ArcPy gives access to functionality that fills a specific purpose. For example, the ArcPy Mapping module provides access to functions that allow you to manage map documents and layer files. The functions and objects in this module all relate in some way to managing these files.

主站蜘蛛池模板: 故城县| 凤阳县| 开鲁县| 保德县| 银川市| 河津市| 鸡泽县| 新蔡县| 浦县| 冕宁县| 防城港市| 淮阳县| 麻城市| 吉林市| 当涂县| 龙江县| 霍邱县| 襄汾县| 织金县| 曲周县| 临澧县| 新民市| 嘉荫县| 西和县| 包头市| 平阴县| 化州市| 元谋县| 金湖县| 灌云县| 建德市| 洮南市| 汝州市| 淮滨县| 衡山县| 综艺| 定州市| 万荣县| 临泉县| 武夷山市| 灵石县|