use road category, and other line icons

This commit is contained in:
Ansis Brammanis
2013-03-21 11:57:00 -04:00
parent e96bb2eae0
commit cdfd5dfc27
6 changed files with 294 additions and 285 deletions
+1 -1
View File
@@ -28,7 +28,7 @@ done
cp $MAKIPATH/renders/*-{12,18}.png feature-icons
## Export pngs from line-preset svg
grep --only-matching "id=\"\(highway\|waterway\|railway\|power\)[^\"]*" line-presets.svg | while read line; do
grep --only-matching "id=\"\(highway\|waterway\|railway\|power\|other\|category\)[^\"]*" line-presets.svg | while read line; do
id=`echo $line | sed 's/id="//'`
inkscape --export-id=$id --export-png=feature-icons/$id.png line-presets.svg
done