blanks to underscores in tag values (e.g. maxspeed-tag)

This commit is contained in:
Arndt 2016-05-05 12:40:33 +02:00
parent e8d8bc084a
commit 47cfb4b83c

View file

@ -148,7 +148,7 @@ public class OsmCutter extends MapCreatorBase
for( String key : w.getTagsOrNull().keySet() )
{
String value = w.getTag( key );
_expctxWay.addLookupValue( key, value, lookupData );
_expctxWay.addLookupValue( key, value.replace( ' ', '_' ), lookupData );
_expctxWayStat.addLookupValue( key, value, null );
}
w.description = _expctxWay.encode(lookupData);