summaryrefslogtreecommitdiff
path: root/scripts/geojson/fetch_streets.sh
blob: dbae43df90272afaee854834bea920cc64dc9e4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/bash

# 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"`

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'`
	if [[ "$name" != "" && "$coord" != "" ]]; then
		echo "{ \"type\": \"Feature\",
	\"geometry\": {
		\"type\": \"LineString\",
		\"coordinates\": [
			$coord
		]
	},
	\"properties\": {
		\"name\": \"$name\"
	}
},"
	fi
done
export IFS=" "
echo "{}"
echo "]"