Skip to main content
Question

LRS - How can I add a measure value to an offset point?

  • May 25, 2018
  • 4 replies
  • 45 views

Forum|alt.badge.img+2

I have signs along a road network and need to add a measure value attribute. I have gotten as far as Measure Extractor with valid measure values. I can't figure out the next steps. I can't use the ID field in Feature Merger as it does not know which segment belongs to which sign.

This post is closed to further activity.
It may be an old question, an answered question, an implemented idea, or a notification-only post.
Please check post dates before relying on any information in a question or answer.
For follow-up or related questions, 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.

4 replies

austinh
Contributor
Forum|alt.badge.img+4
  • Contributor
  • 23 replies
  • May 25, 2018

Create a buffer of your vertex point and use the PointOnArea overlay transformer to join your sign point.


Forum|alt.badge.img+2
  • Author
  • 4 replies
  • May 25, 2018

Thank-you Austin but I do not believe this helps. The measure value is in the output line from PointOnLineOverlayer transformer. The MeasureExtractor transformer adds this measure value as an attribute. This endpoint attribute is what I need to add to the sign feature class.


takashi
Celebrity
  • 7843 replies
  • May 26, 2018

Hi @danellelaurin, since the PointOnLineOverlayer adds the measure value on a line to the overlaid point features, you can just use the MeasureExtractor (Type: Point) to extract the measure value from the resulting point features as an attribute, and merge it back to the original Sign features. If the original Sign features didn't have any unique ID attribute which can be used as the join key, consider using the Counter to add temporary ID (sequential number) immediately after reading them.

In addition, you can also merge attributes of a line feature to overlaid point features (and vise versa) using the Merge Attributes option in the PointOnLineOverlayer, if necessary.


Forum|alt.badge.img+2
  • Author
  • 4 replies
  • May 28, 2018

Thanks Takashi, that worked. I changed my MeasureExtractor input from Line (Type:

Individual Vertex by Index) to Point (Type: Point) from the Point PointOnLineOverlay output and merged it back to the original sign table with a unique sign number value.