I would like to create a workflow that compares two sets of data. Well really it is one dataset that I want to manipulate the data first and then compare it to itself.
The dataset is a list of two sets of points in latitude and longitude coming from excel.
Example
Line lat1 long1 lat2 long2
Line1 39.9379 -104.9802 39.9508 -104.9768
I would like to link these two points to create a line and then add a buffer to the line of 300 ft. So my workflow looks something like this:
1) Reader
2) 2DPointAdder into another 2DPointAdder (creating the line)
3) Reproject (reprojecting from degrees to feet)
4) Buffer (add buffer ft)
5) reproject (reporjecting back in to degrees)
I then want to compare the original list back and see if any of the original lines are within the new buffer. I know that i will get one positive because I am comparing the same list to its self but I am looking to see if any other lines neighboring that line are within the buffer zone.
I have tried to send both the buffered lines and non buffer lines into a clipper but I was unsuccessful.
Anyone have any ideas. Thank you in advance for any assistance.