summaryrefslogtreecommitdiff
path: root/scripts/geojson/fetch_streets.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/geojson/fetch_streets.sh')
-rwxr-xr-xscripts/geojson/fetch_streets.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/scripts/geojson/fetch_streets.sh b/scripts/geojson/fetch_streets.sh
index dbae43d..741f82a 100755
--- a/scripts/geojson/fetch_streets.sh
+++ b/scripts/geojson/fetch_streets.sh
@@ -3,13 +3,13 @@
# WARNING: This script is not yet production ready. The slightest error in the wikipage can throw it off. Handle with care.
json=`curl 'https://wiki.linux-forks.de/mediawiki/api.php?action=query&prop=revisions&rvprop=content&format=json&titles=Maps:Streets'`
-data=`echo $json | json_reformat | sed -e 's/\\\\n//g' -n -e 's/begin:mapdata\([^}]\+\)/\1/gp' | sed -e "s/|-|/}/g"`
+data=`echo "$json" | json_reformat | sed -e 's/\\\\n//g' -n -e 's/begin:mapdata\([^}]\+\)/\1/gp' | sed -e "s/|-|/}/g"`
echo "["
export IFS="}"
for entry in $data; do
- name=`echo $entry | sed -n 's/\s*\([^|]\+\).*/\1/p' | sed 's/ $//'`
- coord=`echo $entry | sed -n 's/.*||\s*\([^|]\+\).*/\1/p'`
+ name=`echo "$entry" | sed -n 's/\s*\([^|]\+\).*/\1/p' | sed 's/ $//'`
+ coord=`echo "$entry" | sed -n 's/.*||\s*\([^|]\+\).*/\1/p'`
if [[ "$name" != "" && "$coord" != "" ]]; then
echo "{ \"type\": \"Feature\",
\"geometry\": {