Skip to content

Commit

Permalink
fix #14399
Browse files Browse the repository at this point in the history
  • Loading branch information
namdre committed Feb 23, 2024
1 parent 247a300 commit d33f357
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/netimport/NIFrame.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -461,6 +461,10 @@ NIFrame::checkOptions(OptionsCont& oc) {
if (oc.getBool("osm.crossings") && !oc.getBool("osm.sidewalks")) {
WRITE_WARNING(TL("It is recommend to use option osm.crossings with osm.sidewalks"));
}
if (oc.isSet("shapefile-prefix") && !oc.isDefault("shapefile.name")) {
oc.setDefault("output.street-names", "true");
}

return ok;
}

Expand Down

0 comments on commit d33f357

Please sign in to comment.