Hello,
Is there a way to actually map a feature definition to a node when using ModelBuilder? It appears that I can only map a "dummy" feature definition to the utility properties - but unfortunately, that has no bearing in the element's actual feature definition. I am hoping that I am missing a checkbox or something.
Bottom line is that I have a shapefile with several different diameter nodes that I would like to accurately import - instead of having to manually update each node's feature definition, based on the diameter.
Any suggestions would be greatly appreciated; either directly on the question I asked, or a way to solve my issue that I am missing!
Thanks!
OpenRoads Designer CONNECT Edition - 2020 Release 2 Update 8 - Version 10.08.01.33
There is a Feature Definition setting in the ModelBuilder Wizard. You will need to build out the logic on the first page to separate the nodes by diameter.
This does require a shapefile with points. If you only have the linear elements there is a more generic node Feature Definition selected in that wizard for missing nodes
When used, that will not adjust for additional information.
Hope that helps.
Steve
www.envisioncad.com
ORD - 10.12.02.04 / 10.10.21.04 / 10.10.01.03 / 10.08.01.33Power GEOPAK / Power InRoads - 08.11.09.918Civil 3D - 2021 / 2022
Thanks for the response Steve, when you say "build out the logic on the first page" could you provide the syntax required for that?
I assume it has to do with checking the "WHERE:" box?
Yes. The WHERE is a SQL query clause. You can do a web search for additional syntax. The general format is to include a column and value you want to filter.
COLUMN NAME='Desired Value'
So to sort for just the water valves in my little data set
I can include:
NODETYPE='Control Valve'
yielding the following
I presume that you can get to be pretty complex in the syntax. In the development work I have done on this, we always have at least one column that is a 1-to-1 with our Feature Definitions, so I haven't done anything much more complex than a single query.
Answer Verified By: Andrew Szymaszek
Thank you Steve!