3592872d4b
If someone creates tests for other areas of mapnik they can be added in too.
5 lines
113 B
Bash
Executable file
5 lines
113 B
Bash
Executable file
#!/bin/sh
|
|
rm -f road.shp road.shx road.dbf
|
|
ogr2ogr -f "ESRI Shapefile" road raw/road.gml
|
|
mv road/* ./
|
|
rmdir road
|