blob: f922dd520bf22e8960707fca38c3c2ce4baeddde (
plain) (
blame)
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
|
--- gmapcatcher/mapArgs.py.orig 2013-07-19 08:20:47 UTC
+++ gmapcatcher/mapArgs.py
@@ -46,10 +46,10 @@ class MapArgs():
print ' very useful to download maps of entire world'
print ' '
print 'SAMPLE USAGE'
- print ' download --location="Paris, France"'
- print ' download --min-zoom=13 --full-range'
- print ' download --latitude=37.979180 --longitude=23.716647'
- print ' download --gpx=myfile.gpx --width=2'
+ print ' mapdownloader --location="Paris, France"'
+ print ' mapdownloader --min-zoom=13 --full-range'
+ print ' mapdownloader --latitude=37.979180 --longitude=23.716647'
+ print ' mapdownloader --gpx=myfile.gpx --width=2'
def __init__(self, arrArgs=()):
if len(arrArgs) > 1:
@@ -99,7 +99,7 @@ class MapArgs():
self.lng_range = 179
def __str__(self):
- return ("download.py --max-zoom=%s --min-zoom=%s" +
+ return ("mapdownloader --max-zoom=%s --min-zoom=%s" +
" --latitude=%s --longitude=%s" +
" --width=%s --height=%s") % \
(self.max_zl, self.min_zl,
|