Toponaming: Don't add empty tags past the threshold
This commit is contained in:
@@ -1192,7 +1192,7 @@ void ElementMap::addChildElements(long masterTag, const std::vector<MappedChildE
|
||||
|
||||
// do child mapping only if the child element count >= 5
|
||||
const int threshold {5};
|
||||
if (child.count >= threshold || !child.elementMap) {
|
||||
if ((child.count >= threshold && child.tag != 0) || !child.elementMap) {
|
||||
encodeElementName(child.indexedName[0],
|
||||
tmp,
|
||||
ss,
|
||||
|
||||
Reference in New Issue
Block a user