Model Builder

From Wildsong
Revision as of 16:54, 26 April 2006 by Brian Wilson (talk | contribs)
Jump to navigationJump to search

ArcGIS 9.x has a new thing called "Model Builder" that lets you build scripts in the form of flow charts and then execute them.

The idea is to make programming more accessible for non-programmers.

The flow chart "language" is extremely limited as a programming medium, but it has one big advantage for learning to program in the ESRI domain. Once you have a "model" built and working, you can generate the equivalent Python code. (Model->Export->To Script->Python). This gives you a starting point for writing your own Python Geoprocessing scripts for use as components in Model Builder, or as standalone tools.

There used to be a joke in programming school back in the olden days that went like this: All flow charts can be simplified to this:

Though at the time this was (relatively) true, college professors never accepted it. You always had to flesh things out more. At the time, almost all programming then was procedural. Event driven models, MVC, objects, functional programming... all those things were in the future.

A procedural program starts at the top (well... at the left in this case) and flows from one box to the next until it completes. Using Model Builder is a tool for building procedural programs. The diagram above was built with Model Builder.

Another way to think of procedural programs is to think of a really old computer system. It had a card reader, a processor, and a printer. Input, processing, output. You put a stack of shape objects into the card reader, you perform some operation on them, and you push them back out into a feature class.

With Model Builder, that's really all there is to it. You just build on this model by chaining things together in stages.

You can chain many tools together, and you can use "preconditions" as a simple form of decision-making (branching) but you can't use any advanced iterations or branches. (I suspect that more advanced features are coming down the road.)

Still, there is a lot you can do within the existing framework.