I have a question about using model builder in ArcGIS 10.1.
In my model, I am creating a processing extent, and within that I am creating a random point to be used in further processing.
This model is iterative, and for each iteration, I am creating a new random point (effectively overwriting the values for the point).
What I would like to be able to do is to write the x-y coordinates of these random points off to a file before the next iteration is performed (either all together or as separate files for each point).
In a way, what I want is the inverse of the "Get Cell Value" tool and to be able to write that value to a file.
I guess it wouldn't be too difficult in python, but I was hoping to be able to do this in model builder.
-
How are you creating this random point, is it some python script generating an XY value?Hornbydd– Hornbydd2014年04月25日 13:35:55 +00:00Commented Apr 25, 2014 at 13:35
-
Would producing a shapefile for every random point suffice, or do you need tabular data?Aaron– Aaron ♦2014年04月25日 13:55:41 +00:00Commented Apr 25, 2014 at 13:55
1 Answer 1
I would suggest that at each iteration, you append the current random point to an already existing point featureclass. After, you could add XY coordinates and export the result.
Hopes this helps!
-
or (if the locations are independent) you create a feature class with all your points and you iterate through it.radouxju– radouxju2014年04月25日 14:55:42 +00:00Commented Apr 25, 2014 at 14:55
Explore related questions
See similar questions with these tags.