Skip to content

Commit

Permalink
downgrading incomplete geometry error to a warning. refs #14598
Browse files Browse the repository at this point in the history
  • Loading branch information
namdre committed Mar 27, 2024
1 parent 21d71cc commit 22dd62d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/polyconvert/PCLoaderOSM.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ PCLoaderOSM::loadIfSet(OptionsCont& oc, PCPolyContainer& toFill, PCTypeMap& tm)
continue;
}
if (e->myCurrentNodes.size() == 0) {
WRITE_ERRORF(TL("Polygon '%' has no shape."), toString(e->id));
WRITE_WARNINGF(TL("Polygon '%' has no shape."), toString(e->id));
continue;
}
// compute shape
Expand Down

0 comments on commit 22dd62d

Please sign in to comment.