0

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.

PolyGeo
65.5k29 gold badges115 silver badges353 bronze badges
asked Apr 25, 2014 at 13:30
2
  • How are you creating this random point, is it some python script generating an XY value? Commented Apr 25, 2014 at 13:35
  • Would producing a shapefile for every random point suffice, or do you need tabular data? Commented Apr 25, 2014 at 13:55

1 Answer 1

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!

answered Apr 25, 2014 at 14:33
1
  • or (if the locations are independent) you create a feature class with all your points and you iterate through it. Commented Apr 25, 2014 at 14:55

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.