blanks to underscores in tag values (e.g. maxspeed-tag)
This commit is contained in:
parent
e8d8bc084a
commit
47cfb4b83c
1 changed files with 1 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue