Skip to main content
Solved

Aligning points to line

  • December 11, 2014
  • 8 replies
  • 345 views

Hi.

 

 

I have gotten stuck at a problem: I have some data points that I want to align to the geometry to a borehole.

 

Is it possible to set up the anchored snapper to snap the points onto the line? I have not been able to find settings that work. The points only get snapped to vertices at ends of line segments, not at the closest position along the borehole line.

 

Best answer by takashi

Hi,

 

 

I would use the NeighborFinder and the VertexCreator.

 

Send the point to the Base port; send the line to the Candidate port.

 

Set the Maximum Distance parameter to an appropriate tolerance.

 

 

The output point from the Matched port will have "_closest_candidate_x" and "_closest_candidate_y". Those attributes store the closest coordinate on the line.

 

And then, use the VertexCreator (Mode: Replace with Point) to move the point to the closest coordinate.

 

 

If the distance between the point and an end node of the line is always enough larger than the tolerance, the AnchoredSnapper (Snapping Type: Segment Snapping) also do that, possibly. But I think the NeighborFinder is better to prevent unexpected end node snapping.

 

 

Takashi
View original
Did this help you find an answer to your question?
This post is closed to further activity.
It may be a question with a best answer, an implemented idea, or just a post needing no comment.
If you have a follow-up or related question, please post a new question or idea.
If there is a genuine update to be made, please contact us and request that the post is reopened.

8 replies

takashi
Contributor
Forum|alt.badge.img+21
  • Contributor
  • Best Answer
  • December 11, 2014
Hi,

 

 

I would use the NeighborFinder and the VertexCreator.

 

Send the point to the Base port; send the line to the Candidate port.

 

Set the Maximum Distance parameter to an appropriate tolerance.

 

 

The output point from the Matched port will have "_closest_candidate_x" and "_closest_candidate_y". Those attributes store the closest coordinate on the line.

 

And then, use the VertexCreator (Mode: Replace with Point) to move the point to the closest coordinate.

 

 

If the distance between the point and an end node of the line is always enough larger than the tolerance, the AnchoredSnapper (Snapping Type: Segment Snapping) also do that, possibly. But I think the NeighborFinder is better to prevent unexpected end node snapping.

 

 

Takashi

gio
Contributor
Forum|alt.badge.img+15
  • Contributor
  • December 11, 2014
Hi,

 

 

You can easily turn neighbourfinder into a "iterative neighborfinder".

 

All parameters except Paralell processing level can be turned to parameters (just rightclick parameter on the transformer and seclet create user parameter)

 

 

For efficiency you add a counter so it can stop when all points are found before it reaches max distance.

 

 

Main:

 

 

 

 

and the custom:

 

 

 

Vertextcreator , create and or add mode to make the connectionline, or to create the realtion.

 

 

An alternative could also be to use a (unconditional) merger if the datapoints have a attribute that can link them to the borehole. (and then again Vertexcreator)

gio
Contributor
Forum|alt.badge.img+15
  • Contributor
  • December 11, 2014
addendum.

 

 

All attributes that must pass trough the customtransformer must be chosen before it is saved as a blockingtransformer. If you change this afterwards you need to go to the procedure of creating it again: edit, create new custom in main, edit and save... (i hope Safe fixes this sometime...)

david_r
Evangelist
  • December 12, 2014
Hi,

 

 

yes, you can also use the AnchoredSnapper. Just make sure to select "Segment snapping" as the snapping type (FME 2014+). Look up the help text for more info on this setting.

 

 

David

mava
Participant
Forum|alt.badge.img+3
  • Participant
  • December 12, 2014
Hi all,

 

 

I have to same situation. I use the VertexCreator after the Neighborhood to determine the closest x and y candidate to the object line. (Yellow line below). The red line I have to snap to it. However, the red line (horizontal line)has only two vertexes, one at the corner and the end of the horizontal line. I used a Chopper  - vertex by - and set to 1.  The result is unchanged.  With the Yellow line I did the same. However, the chopper give unchange results either.  The tolerance is 60 cm. The real distance between the vertexes of the red line and yellow line is shorter. So I am not sure if the AnchoredSnapper is working well in my case.   MAVA 

gio
Contributor
Forum|alt.badge.img+15
  • Contributor
  • December 12, 2014

 

@MAVA.

 

For lines you should use buffering etc.

 

You can't chopp it fine enough to hope to find the shortest distance 2 of linepieces. (that would be iterative/recursive at best)

 

 

Intersecting lines have shortest distance 0...

 

You want to examine the distance between the peices.

 

Topology, extract begin and endnode (if its a ployline, chop down to 2 vertices and keep an ID), and then use a neighbourfinder to to find distance.

  • Author
  • December 13, 2014
Thank you,that does exactly what I wanted. Gios idea is useful to know but in this case I have a common ID to group the data by.

 

My original idea was to use the anchored snapper after interpolating points very closely along the line (every 0.1 m) but couldn’t get it to work.

 

 

  • October 24, 2016
takashi wrote:
Hi,

 

 

I would use the NeighborFinder and the VertexCreator.

 

Send the point to the Base port; send the line to the Candidate port.

 

Set the Maximum Distance parameter to an appropriate tolerance.

 

 

The output point from the Matched port will have "_closest_candidate_x" and "_closest_candidate_y". Those attributes store the closest coordinate on the line.

 

And then, use the VertexCreator (Mode: Replace with Point) to move the point to the closest coordinate.

 

 

If the distance between the point and an end node of the line is always enough larger than the tolerance, the AnchoredSnapper (Snapping Type: Segment Snapping) also do that, possibly. But I think the NeighborFinder is better to prevent unexpected end node snapping.

 

 

Takashi

 

That works perfectly. Thank you!

 


Cookie policy

We use cookies to enhance and personalize your experience. If you accept you agree to our full cookie policy. Learn more about our cookies.

 
Cookie settings