1 / 34

Writing Geoprocessing Scripts With ArcGIS

Writing Geoprocessing Scripts With ArcGIS. Lecture 9. GIS System. ArcObjects. ArcObjects are the building blocks of ArcGIS. With ArcObjects, you can create your own menus, tools, workflows, applications, and custom feature classes for use with ArcGIS.

lilly
Télécharger la présentation

Writing Geoprocessing Scripts With ArcGIS

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. Writing Geoprocessing ScriptsWith ArcGIS Lecture 9

  2. GIS System

  3. ArcObjects • ArcObjects are the building blocks of ArcGIS. With ArcObjects, you can create your own menus, tools, workflows, applications, and custom feature classes for use with ArcGIS. • ESRI ArcObjects is the development platform for the ArcGIS family of applications, such as ArcMap, ArcCatalog, ArcScene, ArcGIS Engine, and ArcGIS Server. The ArcObjects software components expose the full range of functionality available in ArcInfo, ArcEditor, and ArcView to software developers • Can use VBA, Python, C++, Java to program

  4. COM (Component Object Model) is an interface standard for software componentry introduced by Microsoft in 1993. It is used to enable interprocess communication and dynamic object creation in a large range of programming languages Python 2.5: import sys, string, os, arcgisscripting Python 2.5: gp = arcgisscripting.create()

  5. Python Basics

  6. Variable index Word = • Word[0]=‘H’ • Word[2:4]=‘lp’ • Word[:3]=‘Hel’ • Word[-2:-4]=‘el’ • Word[-3:]=‘lpA’

  7. Scripts Examples

  8. Does not work in your new version 2.5

  9. Create a new geoprocessor Add the toolbox

  10. How to run a python script • You can run a script as a standalone operation or you can add a script to a toolbox and then run the script from its dialog box or incorporate it into a model. • Running a script as a standalone operation means that you can accomplish geoprocessing without ever opening an ArcGIS Desktop application. For example, you can run scripts from within a script editor, like Pythonwin, or from the command prompt.

  11. Example: Extract the radar rainfallusing raingauges location. • Objective: compare the radar and rain gauge rainfall measurements • Data source: • Polygon-feature class of radar rainfall (>10k files); • Point-feature of rain gauge locations (50 gauges); • Method: interception • Final format: all values are stored at one *.txt file.

  12. Study Area

More Related