Skip to main content
Solved

i have a road network of 4 areas and it is categorized as external and internal road, The features has an attribute as number of lanes so i want a HTML or Excel file based on the total sum of lengths each lane has. Thanks in Advance

  • July 17, 2021
  • 3 replies
  • 16 views

mufeez1995
Contributor
Forum|alt.badge.img+6
i have a road network of 4 areas and it is categorized as external and internal road, The features has an attribute as number of lanes so i want a HTML or Excel file based on the total sum of lengths each lane has. Thanks in Advance

Best answer by philipwhitten

Are you saying that you would like to add all of the lengths for lane 1 together, and then the same for the other lanes? The StatisticsCalculator will do this.

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.

3 replies

philipwhitten
Supporter
Forum|alt.badge.img+15
  • Supporter
  • 50 replies
  • July 17, 2021

Are you saying that a features has one attribute for lane number and another attribute for lane length? If this is correct, you could use AttributeManager or AttributeCreator to create a new attribute that is the some of the lengths. If there are a different number of lanes for different features then you will have to handle null or missing values.


philipwhitten
Supporter
Forum|alt.badge.img+15
  • Supporter
  • 50 replies
  • Best Answer
  • July 17, 2021

Are you saying that you would like to add all of the lengths for lane 1 together, and then the same for the other lanes? The StatisticsCalculator will do this.


mufeez1995
Contributor
Forum|alt.badge.img+6
  • Author
  • Contributor
  • 1 reply
  • July 18, 2021

Are you saying that you would like to add all of the lengths for lane 1 together, and then the same for the other lanes? The StatisticsCalculator will do this.

Thanks for the solution, it works​