34
Writing Geoprocessing Scripts With ArcGIS Lecture 9

Writing Geoprocessing Scripts With ArcGIS Lecture 9

Embed Size (px)

Citation preview

Page 1: Writing Geoprocessing Scripts With ArcGIS Lecture 9

Writing Geoprocessing ScriptsWith ArcGIS

Lecture 9

Page 2: Writing Geoprocessing Scripts With ArcGIS Lecture 9

GIS System

Page 3: Writing Geoprocessing Scripts With ArcGIS Lecture 9

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

Page 4: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 5: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 6: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 7: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 8: Writing Geoprocessing Scripts With ArcGIS Lecture 9

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()

Page 9: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 10: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 11: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 12: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 13: Writing Geoprocessing Scripts With ArcGIS Lecture 9

Python Basics

Page 14: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 15: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 16: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 17: Writing Geoprocessing Scripts With ArcGIS Lecture 9

Variable index

Word =

Word[0]=‘H’ Word[2:4]=‘lp’ Word[:3]=‘Hel’ Word[-2:-4]=‘el’ Word[-3:]=‘lpA’

Page 18: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 19: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 20: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 21: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 22: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 23: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 24: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 25: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 26: Writing Geoprocessing Scripts With ArcGIS Lecture 9

Scripts Examples

Page 27: Writing Geoprocessing Scripts With ArcGIS Lecture 9

Does not work in your new version 2.5

Page 28: Writing Geoprocessing Scripts With ArcGIS Lecture 9

Add the toolbox

Create a new geoprocessor

Page 29: Writing Geoprocessing Scripts With ArcGIS Lecture 9

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.

Page 30: Writing Geoprocessing Scripts With ArcGIS Lecture 9

Example: Extract the radar rainfall using 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.

Page 31: Writing Geoprocessing Scripts With ArcGIS Lecture 9

Study Area

Page 32: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 33: Writing Geoprocessing Scripts With ArcGIS Lecture 9
Page 34: Writing Geoprocessing Scripts With ArcGIS Lecture 9