In computer programming, an iterator is an object that enables a programmer to traverse a container.

learn more… | top users | synonyms

2
votes
1answer
27 views

Near analysis by matching attribute in two different layers

I need to perform a near analysis to assign cases in one feature class to their nearest match on an attribute in a different feature class (ex: Tutors and Tutees need to be paired by same language ...
1
vote
2answers
50 views

ArcGIS 10.1: “ERROR 000223: Cannot extract event table properties” when iterating through multiple files/folder

I am trying to convert ~270k csv-files with lat/long-data to layerfiles. The files are split into folders by year, i.e. ~30 folders with ~9k csv-files in each. I have written a script to iterate ...
1
vote
1answer
125 views

ModelBuilder: How2 pipe output of Iterate Raster tool into Raster Calculator tool?

Re: ArcGIS v10.1 ModelBuilder Hello, THE PROBLEM: Using ModelBuilder and map algebra, I want to compute a ten year average grid from a stack of 10. The problem is that only 1 grid (%raster%), the ...
0
votes
1answer
116 views

Model Builder - iterate through columns in a table

This seems like it should be a no-brainer, but I am unable to find any info on how to use model builder to run a certain spatial analysis function on each column in a table. Problem: I have a table ...
3
votes
3answers
69 views

Iteratively unioning pairs of shapefiles

A simple (I think) Model Builder question. I have 25 field sites, for each of which I have mapped land use as separate layers for different years. In one folder I have veg layers for 1994, named ...
0
votes
1answer
88 views

Using the model builder in ArcGIS, how do I iterate through rasters in a model?

Right now I'm attempting to iterate through rasters collected in a file geodatabase, in a model that I've created using the model builder in ArcGIS. I don't have the ModelBuilder Toolbox, otherwise ...
1
vote
0answers
47 views

Iterated field create to continue after failure

I am not a very good programmer and do not claim to be an expert in arc. I am going to try to explain this problem as clearly as possible and any solutions that you guys may have would be helpful. I ...
2
votes
0answers
74 views

Running a new iteration for each column of a dataset in ArcGIS

I'm pretty new to Modelbuilding, having just been turned onto it about a week ago on here. So my problem is, I currently have a dataset of habitats that change through time (from Immature to Mature, ...
4
votes
0answers
96 views

nested iterator, 2 iterations in one model, collect values, cell statistics, batch processing dialogue box

(ArcGIS10, SP2, ArcInfo) Dear all, this is my model, and it works perfectly, but .... I do have a large amount of data to process. The interim output files (from raster calculator, collect value) ...
9
votes
0answers
91 views

Iterating a model to create 3 buffers around three points and find their intersection (trilateration) in arcgis 10 [duplicate]

This past summer I recorded the location of a large number of plants I was working with by calculating the distance from each plant to each of 3 tripods for which I have GPS coordinates. I'm trying to ...
2
votes
1answer
125 views

ModelBuilder: Multiple Iterators and Clipping

I have two separate polygon layers. One layer consists of voronoi polygons. The second layer consists of buffers, many of which overlap. I need to do is iterate through each voronoi, clip only the ...
2
votes
1answer
48 views

Restricting dataset types does not work correctly in a dataset iterator

I need to obtain a list of all the CAD drawings within a specified folder (and subfolders). I initially tried using a Files Iterator in ModelBuilder, but when I specified the extension, it prompted me ...
3
votes
1answer
253 views

Using ArcGIS ModelBuilder with a “While” Iterator

I am struggling to get the ArcGIS ModelBuilder "While" Iterator to work as I would expect it. I have a hunch it's user error, but even reading the help hasn't seemed to get it working for me. I have ...
2
votes
2answers
232 views

Model builder: select feature based on attribute, iterator?

This is the data I have: shapefile with polygons shapefile with line features What I eventually want: line features attributes joined to the polygons that they fall in. I need to clip each polygon ...
3
votes
1answer
158 views

How to prevent running part of a model when iterator is used?

My process is to run Buffer on two feature layers, intersect the buffers and then Clip intersected buffers with polygon object from Iterate Feature Selection iterator. Here's my model: The model runs ...