Skip to main content
Question

Assign line length, then snip points at interpolated values.

  • October 25, 2017
  • 2 replies
  • 19 views

fneal
Contributor
Forum|alt.badge.img+4
  • Contributor
  • 19 replies

I have irregular line segments that I need to create points along using station (M) values.

The actual Shape Length of the line and the station values are not the same (i.e. shape length of 50 and end M value of 75).

The line feature has the M values as a property, but not as an attribute.

The beginning and end M values for the line segments are known.

Is there a way to reassign line length (in memory) based on the known M values so that I can place (snip) points on interpolated values along the line?

Thanks in advance,

Freddy

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.

2 replies

takashi
Celebrity
  • 7843 replies
  • October 25, 2017

Hi @fneal, if the 'M' indicates the measure of a node of the line segment, the Snipper transformer with "Measure (Value)" mode might help you. For example, assume the measure values of start and end nodes are 0 and 15, the Snipper with this parameters setting outputs a point having measure of 5, regardless of the length of the line.

  • Snipping Mode: Measure (Value)
  • Starting Location: 5
  • Ending Location: 5

fneal
Contributor
Forum|alt.badge.img+4
  • Author
  • Contributor
  • 19 replies
  • October 25, 2017

Hi @fneal, if the 'M' indicates the measure of a node of the line segment, the Snipper transformer with "Measure (Value)" mode might help you. For example, assume the measure values of start and end nodes are 0 and 15, the Snipper with this parameters setting outputs a point having measure of 5, regardless of the length of the line.

  • Snipping Mode: Measure (Value)
  • Starting Location: 5
  • Ending Location: 5
This worked perfectly. Thanks very much!