ArcGIS Pro. I've merged my point feature classes of species and have gone to run an Intersect Analysis on these with a line (river) feature class. However, I only receive one point in the output and I know there is hundreds....
-
How do you know they intersect? Try Snap, but backup your data firstBera– Bera2020年07月29日 10:15:35 +00:00Commented Jul 29, 2020 at 10:15
-
Okay I'll give this a go. Thanks BERAJade– Jade2020年07月29日 10:19:22 +00:00Commented Jul 29, 2020 at 10:19
-
Point-on-line is often an impossible task. Instead use point-near-line with a suitable small distance tolerance.Vince– Vince2020年07月29日 13:03:38 +00:00Commented Jul 29, 2020 at 13:03
1 Answer 1
line and points have very precise coordinates and therefore rarely match. Instead of intersect, I recommand you to use spatial join:
this will give you all the points with the attribute of the closest line.
you will have a distance field to check (with an arbitrary tolerance) if the point is near the line (or not)