-
Notifications
You must be signed in to change notification settings - Fork 6
/
get_data_pgis_rect
executable file
·322 lines (264 loc) · 15.5 KB
/
get_data_pgis_rect
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
#!/usr/bin/env bash
set -e
LON_START=$1
LAT_START=$2
LON_END=$3
LAT_END=$4
DB=$5
function download {
OVERPASS_SERVERS=( "http://overpass-api.de/api" "http://overpass.osm.rambler.ru/cgi" "http://api.openstreetmap.fr/oapi/" )
OVERPASS_SERVERS_COUNT=${#OVERPASS_SERVERS[@]}
LAT_STEP=$5
LON_STEP=$6
LAT_STEP2=$(python <<< "print ($LAT_END - $LAT_START)/$LAT_STEP")
LON_STEP2=$(python <<< "print ($LON_END - $LON_START)/$LON_STEP")
i=0
str=""
#qs="${1}"
OLD_IFS=$IFS
IFS=''
qs="$1[*]"
qs=(${!qs})
IFS=$OLD_IFS
#echo $qs2
for qq in "${qs[@]}"; do
for i_lat_index in $(eval echo "{1..$LAT_STEP}"); do
i_lat=$(bc -l <<< "$LAT_START+($i_lat_index-1)*$LAT_STEP2")
echo $i_lat
lat_from=$i_lat
lat_to=$(python <<< "print min($LAT_END,$i_lat+$LAT_STEP2)")
lat_from=$(echo $lat_from | sed -E 's/^\.(.+)/0.\1/')
lat_from=$(echo $lat_from | sed -E 's/^-\.(.+)/-0.\1/')
lat_to=$(echo $lat_to | sed -E 's/^\.(.+)/0.\1/')
lat_to=$(echo $lat_to | sed -E 's/^-\.(.+)/-0.\1/')
for i_lon_index in $(eval echo "{1..$LON_STEP}"); do
i_lon=$(bc -l <<< "$LON_START+($i_lon_index-1)*$LON_STEP2")
echo $i_lon
lon_from=$i_lon
lon_to=$(python <<< "print min($LON_END,$i_lon+$LON_STEP2)")
lon_from=$(echo $lon_from | sed -E 's/^\.(.+)/0.\1/')
lon_from=$(echo $lon_from | sed -E 's/^-\.(.+)/-0.\1/')
lon_to=$(echo $lon_to | sed -E 's/^\.(.+)/0.\1/')
lon_to=$(echo $lon_to | sed -E 's/^-\.(.+)/-0.\1/')
q=${qq//%lon1%/$lon_from}
q=${q//%lon2%/$lon_to}
q=${q//%lat1%/$lat_from}
q=${q//%lat2%/$lat_to}
i=$(($i+1))
server=${OVERPASS_SERVERS[$(($i % $OVERPASS_SERVERS_COUNT))]}
set +e
errs=0
wget -T 86400 -O - "$server/interpreter?data=[timeout:86400];$q;out;" | osmconvert - --out-o5m > "/tmp/~$2.$i_lon.$i_lat.o5m"
while [ $? -ne 0 ] && [ $errs -le 12 ]; do
i=$(($i+1))
server=${OVERPASS_SERVERS[$(($i % $OVERPASS_SERVERS_COUNT))]}
if [ $errs -gt 3 ]; then
sleep $(($errs * $errs))
fi
let errs++
wget -T 86400 -O - "$server/interpreter?data=[timeout:86400];$q;out;" | osmconvert - --out-o5m > "/tmp/~$2.$i_lon.$i_lat.o5m"
done
set -e
if [ $errs -gt 12 ]; then
exit -1
fi;
if [ -f "/tmp/$2.$LON_START.$LAT_START.o5m" ]; then
osmconvert "/tmp/$2.$LON_START.$LAT_START.o5m" "/tmp/~$2.$i_lon.$i_lat.o5m" --out-o5m > "/tmp/$2.$LON_START.$LAT_START.o5m~"
if [ -f "/tmp/~$2.$i_lon.$i_lat.o5m" ]; then
FS1=$(stat -c%s "/tmp/~$2.$i_lon.$i_lat.o5m")
else
FS1=0
fi
if [ -f "/tmp/$2.$LON_START.$LAT_START.o5m~" ]; then
FS2=$(stat -c%s "/tmp/$2.$LON_START.$LAT_START.o5m~")
else
FS2=0
fi
if [ $FS1 -gt $FS2 ]; then
unlink "/tmp/$2.$LON_START.$LAT_START.o5m~"
else
if [ -f "/tmp/$2.$LON_START.$LAT_START.o5m" ]; then
unlink "/tmp/$2.$LON_START.$LAT_START.o5m"
fi
mv "/tmp/$2.$LON_START.$LAT_START.o5m~" "/tmp/$2.$LON_START.$LAT_START.o5m"
fi
unlink "/tmp/~$2.$i_lon.$i_lat.o5m"
else
mv "/tmp/~$2.$i_lon.$i_lat.o5m" "/tmp/$2.$LON_START.$LAT_START.o5m"
fi
done
done
done
osmconvert "/tmp/$2.$LON_START.$LAT_START.o5m" --out-osm | bzip2 > "/tmp/$2.$LON_START.$LAT_START.osm.bz2"
unlink "/tmp/$2.$LON_START.$LAT_START.o5m"
case "$3" in
point)
echo "DROP TABLE $2; DROP INDEX $2_point_pkey,$2_point_index;" | psql -d $DB
;;
pointex)
echo "DROP TABLE $2; DROP INDEX $2_point_pkey,$2_point_index;" | psql -d $DB
;;
line)
echo "DROP TABLE $2; DROP INDEX $2_line_pkey,$2_line_index;" | psql -d $DB
;;
route)
echo "DROP TABLE $2; DROP INDEX $2_line_pkey,$2_line_index;" | psql -d $DB
;;
polygon)
echo "DROP TABLE $2; DROP INDEX $2_polygon_pkey,$2_polygon_index;" | psql -d $DB
;;
esac
/usr/local/bin/osm2pgsql \
-d $DB \
--style "/root/map1/osm2pgsql/$2.style" \
--create \
--slim --cache 768 \
--prefix $2 \
/tmp/$2.$LON_START.$LAT_START.osm.bz2
unlink "/tmp/$2.$LON_START.$LAT_START.osm.bz2"
case "$3" in
point)
echo "ALTER TABLE $2_point RENAME TO $2; DROP TABLE $2_polygon; DROP TABLE $2_line,$2_nodes,$2_rels,$2_roads,$2_ways;" | psql -d $DB
;;
pointex)
echo "CREATE TABLE $2 AS $4; DROP TABLE $2_point,$2_polygon,$2_line,$2_nodes,$2_rels,$2_roads,$2_ways; DROP TABLE $2_point,$2_polygon,$2_line,$2_nodes,$2_rels,$2_roads,$2_ways;" | psql -d $DB
;;
line)
echo "ALTER TABLE $2_line RENAME TO $2; DROP TABLE $2_polygon; DROP TABLE $2_point,$2_nodes,$2_rels,$2_roads,$2_ways;" | psql -d $DB
;;
route)
echo "ALTER TABLE $2_line RENAME TO $2; DROP TABLE $2_polygon;" | psql -d $DB
;;
polygon)
echo "ALTER TABLE $2_polygon RENAME TO $2; DROP TABLE $2_line; DROP TABLE $2_point,$2_nodes,$2_rels,$2_roads,$2_ways;" | psql -d $DB
;;
esac
if [ -f "/root/map1/osm2pgsql/$2.get-sql.php" ]; then
php "/root/map1/osm2pgsql/$2.get-sql.php" | psql -d $DB
fi
}
./make-gis-db $DB klinger
q=( "node(%lat1%,%lon1%,%lat2%,%lon2%)[place~\"city|town|village|hamlet|isolated_dwelling|farm|suburb|neighbourhood|locality|island|islet\"]" )
download q place point "" 1 1
q=( "(way(%lat1%,%lon1%,%lat2%,%lon2%)[highway][area!~\"yes|1|Yes|true|True\"];);(._;node(w);)" )
download q highway line "" 2 2
q=( "(rel(%lat1%,%lon1%,%lat2%,%lon2%)[highway][area~\"yes|1|Yes|true|True\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[highway][area~\"yes|1|Yes|true|True\"];);(._;node(w);)" )
download q highway_area polygon "" 1 1
q=( "node(%lat1%,%lon1%,%lat2%,%lon2%)[highway]" )
download q highway_point point "" 1 1
q=(
"(rel(%lat1%,%lon1%,%lat2%,%lon2%)[access][highway!~\".*\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[access][highway!~\".*\"];);(._;node(w);)"
)
download q accessarea polygon "" 1 1
q=(
"(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[natural][natural!~\"wetland|marsh|water\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[natural][natural!~\"wetland|marsh|water\"];);(._;node(w);))->.a); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[landuse][landuse!~\"basin|reservoir\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[landuse][landuse!~\"basin|reservoir\"];);(._;node(w);))->.b); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[leisure];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[leisure];);(._;node(w);))->.c); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[amenity];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[amenity];);(._;node(w);))->.d); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[place];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[place];);(._;node(w);))->.e); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[power];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[power];);(._;node(w);))->.f); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[tourism];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[tourism];);(._;node(w);))->.g); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[historic];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[historic];);(._;node(w);))->.h); \
(.a; .b; .c; .d; .e; .f; .g; .h;)"
)
download q landcover polygon "" 2 2
q=( "(way(%lat1%,%lon1%,%lat2%,%lon2%)[natural][area!~\"yes|1|Yes|true|True\"];);(._;node(w);)" )
download q landcover_line line "" 1 1
q=( "node(%lat1%,%lon1%,%lat2%,%lon2%)[natural]" )
download q landcover_point point "" 1 1
q=(
"(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[boundary~\"protected_area|national_park\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[boundary~\"protected_area|national_park\"];);(._;node(w);))->.a); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[landuse=military];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[landuse=military];);(._;node(w);))->.b); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[military~\"danger_area|range\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[military~\"danger_area|range\"];);(._;node(w);))->.c); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[leisure=nature_reserve];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[leisure=nature_reserve];);(._;node(w);))->.d); \
(.a; .b; .c; .d;)"
)
download q paboundary polygon "" 1 1
q=(
"(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[waterway~\"dock|riverbank|dam|weir\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[waterway~\"dock|riverbank|dam|weir\"];);(._;node(w);))->.a); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[natural~\"wetland|marsh|water\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[natural~\"wetland|marsh|water\"];);(._;node(w);))->.b); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[landuse~\"basin|reservoir\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[landuse~\"basin|reservoir\"];);(._;node(w);))->.c); \
(.a; .b; .c;)"
)
download q waterarea polygon "" 2 1
q=(
"((node(%lat1%,%lon1%,%lat2%,%lon2%)[waterway~\"weir|dam|lock_gate\"])->.a); \
((way(%lat1%,%lon1%,%lat2%,%lon2%)[waterway~\"weir|dam|lock_gate\"];);(._;node(w);)->.b); \
(.a; .b;)"
)
download q waterpoint pointex \
" SELECT osm_id,waterway,layer,bridge,tunnel,building,name,way FROM waterpoint_point \
UNION SELECT osm_id,waterway,layer,bridge,tunnel,building,name,ST_PointOnSurface(way) AS way FROM waterpoint_line" \
2 2
q=( "(way(%lat1%,%lon1%,%lat2%,%lon2%)[waterway~\"weir|dam|lock_gate\"][area!~\"yes|1|Yes|true|True\"];);(._;node(w);)" )
download q waterway2 line "" 1 1
q=( "(way(%lat1%,%lon1%,%lat2%,%lon2%)[railway];);(._;node(w);)" )
download q railway line "" 2 1
q=( "(way(%lat1%,%lon1%,%lat2%,%lon2%)[aeroway~\"taxiway|runway\"][area!~\"yes|1|true|Yes|True\"];);(._;node(w);)" )
download q aeroway line "" 1 1
q=(
"(rel(%lat1%,%lon1%,%lat2%,%lon2%)[aeroway~\"taxiway|runway\"][area~\"yes|1|true|Yes|True\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[aeroway~\"taxiway|runway\"][area~\"yes|1|true|Yes|True\"];);(._;node(w);)"
)
download q aeroarea polygon "" 1 1
q=( "(way(%lat1%,%lon1%,%lat2%,%lon2%)[aerialway];);(._;node(w);)" )
download q aerialway line "" 1 1
q=( "node(%lat1%,%lon1%,%lat2%,%lon2%)[aerialway]" )
download q aerialpoint point "" 1 1
q=(
"(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[type=route][route=piste][\"piste:type\"=downhill][area!~\"yes|1|true|Yes|True\"];);(._;way(r););(._;node(w);))->.a); \
(((way(%lat1%,%lon1%,%lat2%,%lon2%)[\"piste:type\"=downhill][area!~\"yes|1|true|Yes|True\"];);(._;node(w);))->.b);\
(.a; .b;)
"
)
download q pisteway line "" 1 1
q=( "(rel(%lat1%,%lon1%,%lat2%,%lon2%)[type=route][route=piste][\"piste:type\"=downhill][area~\"yes|1|true|Yes|True\"];);(._;way(r););(._;node(w);)" )
download q pistearea polygon "" 1 1
q=( "(way(%lat1%,%lon1%,%lat2%,%lon2%)[barrier][area!~\"yes|1|true|Yes|True\"];);(._;node(w);)" )
download q barrier line "" 1 1
q=( "node(%lat1%,%lon1%,%lat2%,%lon2%)[barrier]" )
download q barrierpoint point "" 1 1
q=(
"(rel(%lat1%,%lon1%,%lat2%,%lon2%)[building][building!~\"no|0|false|No|False|bridge|tunnel\"][bridge!~\"yes|true|1|Yes|True\"][tunnel!~\"yes|true|1|Yes|True\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[building][building!~\"no|0|false|No|False|bridge|tunnel\"][bridge!~\"yes|true|1|Yes|True\"][tunnel!~\"yes|true|1|Yes|True\"];);(._;node(w);)"
)
download q building polygon "" 3 2
q=( "(way(%lat1%,%lon1%,%lat2%,%lon2%)[power~\"line|minor_line|cable\"][area!~\"yes|1|true|Yes|True\"];);(._;node(w);)" )
download q power line "" 1 1
q=( "node(%lat1%,%lon1%,%lat2%,%lon2%)[power]" )
download q powerpoint point "" 1 1
q=(
"((node(%lat1%,%lon1%,%lat2%,%lon2%)[historic])->.a); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[historic];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[historic];);(._;node(w);))->.b); \
((node(%lat1%,%lon1%,%lat2%,%lon2%)[man_made])->.c); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[man_made];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[man_made];);(._;node(w);))->.d); \
((node(%lat1%,%lon1%,%lat2%,%lon2%)[leisure])->.e); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[leisure];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[leisure];);(._;node(w);))->.f); \
((node(%lat1%,%lon1%,%lat2%,%lon2%)[tourism])->.g); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[tourism];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[tourism];);(._;node(w);))->.h); \
((node(%lat1%,%lon1%,%lat2%,%lon2%)[amenity])->.i); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[amenity];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[amenity];);(._;node(w);))->.j); \
((node(%lat1%,%lon1%,%lat2%,%lon2%)[highway])->.k); \
((node(%lat1%,%lon1%,%lat2%,%lon2%)[railway])->.l); \
((node(%lat1%,%lon1%,%lat2%,%lon2%)[aeroway])->.m); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[aeroway];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[aeroway];);(._;node(w);))->.n); \
((node(%lat1%,%lon1%,%lat2%,%lon2%)[power=\"generator\"])->.o); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[power=\"generator\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[power=\"generator\"];);(._;node(w);))->.p); \
((node(%lat1%,%lon1%,%lat2%,%lon2%)[natural=\"cave_entrance\"])->.q); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[natural=\"cave_entrance\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[natural=\"cave_entrance\"];);(._;node(w);))->.r); \
((node(%lat1%,%lon1%,%lat2%,%lon2%)[building~\"church|chapel\"])->.s); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[building~\"church|chapel\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[building~\"church|chapel\"];);(._;node(w);))->.t); \
((node(%lat1%,%lon1%,%lat2%,%lon2%)[shop])->.u); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[shop];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[shop];);(._;node(w);))->.v); \
((node(%lat1%,%lon1%,%lat2%,%lon2%)[sport])->.w); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[sport];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[sport];);(._;node(w);))->.x); \
((node(%lat1%,%lon1%,%lat2%,%lon2%)[military])->.y); \
(((rel(%lat1%,%lon1%,%lat2%,%lon2%)[military];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[military];);(._;node(w);))->.z); \
(.a; .b; .c; .d; .e; .f; .g; .h; .i; .j; .k; .l; .m; .n; .o; .p; .q; .r; .s; .t; .u; .v; .w; .x; .y; .z;)"
)
download q symbol pointex \
" SELECT osm_id,name,int_name,\"name:en\",\"name:de\",\"name:cs\",historic,leisure,sport,military,man_made,shop,tourism,amenity,ruins,castle_type,building,\"natural\",\"tower:type\",information,place_of_worship,\"place_of_worship:type\",railway,highway,aeroway,power,colour,transport,public_transport,cargo,cuisine,parking,maxheight,fee,surveillance,memorial,operator,wikipedia,website,z_order,way FROM symbol_point \
UNION SELECT osm_id,name,int_name,\"name:en\",\"name:de\",\"name:cs\",historic,leisure,sport,military,man_made,shop,tourism,amenity,ruins,castle_type,building,\"natural\",\"tower:type\",information,place_of_worship,\"place_of_worship:type\",railway,highway,aeroway,power,colour,transport,public_transport,cargo,cuisine,parking,maxheight,fee,surveillance,memorial,operator,wikipedia,website,z_order,ST_Centroid(way) AS way FROM symbol_polygon" \
2 2
q=( "(rel(%lat1%,%lon1%,%lat2%,%lon2%)[route~\"mtb|horse|ski|bicycle|horse|hiking|mountain hiking|foot\"];);(._;way(r););(._;node(w);)" )
download q route route "" 1 2
q=( "(rel(%lat1%,%lon1%,%lat2%,%lon2%)[route~\"ferry\"];);(._;way(r););(._;node(w););(way(%lat1%,%lon1%,%lat2%,%lon2%)[route~\"ferry\"];);(._;node(w);)" )
download q ferry line "" 1 1