You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Default name is always unique. It consist of current timestamp and a postfix.
323
317
"""
324
318
325
-
ifself.finished:
326
-
return
327
-
328
319
prefix=QDir.tempPath() +"/"
329
320
ifself.dbm.currentKey:
330
321
key=QString(self.dbm.currentKey)
@@ -339,9 +330,6 @@ def autoLoadClicked(self):
339
330
"""Function is called after clicking on AutoLoad checkbox.
340
331
"""
341
332
342
-
ifself.finished:
343
-
return
344
-
345
333
ifnotself.autoLoadCheckBox.isChecked():
346
334
self.chkCustomRenderer.setEnabled(False)
347
335
self.chkReplaceData.setEnabled(False)
@@ -355,9 +343,6 @@ def showExtentHelp(self):
355
343
It shows basic information on downloading.
356
344
"""
357
345
358
-
ifself.finished:
359
-
return
360
-
361
346
mb=QMessageBox()
362
347
mb.setMinimumWidth(390)
363
348
mb.information(self, self.tr("Getting data"),self.tr("The OpenStreetMap server you are downloading OSM data from (~ api.openstreetmap.org) has fixed limitations of how much data you can get. As written at <http://wiki.openstreetmap.org/wiki/Getting_Data> neither latitude nor longitude extent of downloaded region can be larger than 0.25 degrees. Note that Quantum GIS allows you to specify any extent you want, but OpenStreetMap server will reject all request that won't satisfy downloading limitations."))
@@ -370,9 +355,6 @@ def checkExtent(self):
370
355
Result of checking is displayed on dialog.
371
356
"""
372
357
373
-
ifself.finished:
374
-
return
375
-
376
358
lim=0.25# download limitations of openstreetmap server in degrees
0 commit comments