i'm looking for some help in ArcGIS 10. I have a grid with many horizontal and vertical lines and want to auto-generate points at the crossing point of two lines.
I was waiting for someone else answer this, but I'll go ahead with my suggestion--
I believe you can execute Intersect, a layer 'self-intersection', point output...however this may produce multi-point output, I'm not sure, but think for simple points, you can then either Dissolve or create points from XY event (Make XY Event) from coordinates (Add XY Coordinates). Before creating the event, run Frequency on both Point_X and Point_Y for single unique (X, Y) coordinate pairs....this will guarantee 1 point only at an intersection. Of course this can be done more efficiently from script, but in a pinch or one-time use, this approach works adequately.
I was waiting for someone else answer this, but I'll go ahead with my suggestion--
I believe you can execute Intersect, a layer 'self-intersection', point output...however this may produce multi-point output, I'm not sure, but think for simple points, you can then either Dissolve or create points from XY event (Make XY Event) from coordinates (Add XY Coordinates). Before creating the event, run Frequency on both Point_X and Point_Y for single unique (X, Y) coordinate pairs....this will guarantee 1 point only at an intersection. Of course this can be done more efficiently from script, but in a pinch or one-time use, this approach works adequately.
Thanks for the answer. 🙂 I need it only one times. But I don't understand, which function I have to use for it. The intersection-functions don't work as I want