Skip to content

Commit 5426ebe

Browse files
committedOct 9, 2015
Merge pull request #2343 from PedroVenancio/grass7_plugin
remove "-write_absolute_path" option from gdaltindex (addresses #11428, #4064)
2 parents b11b73c + 391d60c commit 5426ebe

File tree

2 files changed

+1
-11
lines changed

2 files changed

+1
-11
lines changed
 

‎python/plugins/GdalTools/tools/doTileIndex.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,6 @@ def __init__(self, iface):
4848
#( self.recurseCheck, SIGNAL( "stateChanged( int )" ),
4949
(self.outSelector, SIGNAL("filenameChanged()")),
5050
(self.indexFieldEdit, SIGNAL("textChanged( const QString & )"), self.indexFieldCheck),
51-
(self.absolutePathCheck, SIGNAL("stateChanged( int )"), None, 1500),
5251
(self.skipDifferentProjCheck, SIGNAL("stateChanged( int )"), None, 1500)
5352
])
5453

@@ -77,8 +76,6 @@ def getArguments(self):
7776
if self.indexFieldCheck.isChecked() and self.indexFieldEdit.text():
7877
arguments.append("-tileindex")
7978
arguments.append(self.indexFieldEdit.text())
80-
if self.absolutePathCheck.isChecked():
81-
arguments.append("-write_absolute_path")
8279
if self.skipDifferentProjCheck.isChecked():
8380
arguments.append("-skip_different_projection")
8481
arguments.append(self.getOutputFileName())

‎python/plugins/GdalTools/tools/widgetTileIndex.ui

Lines changed: 1 addition & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<x>0</x>
88
<y>0</y>
99
<width>400</width>
10-
<height>181</height>
10+
<height>153</height>
1111
</rect>
1212
</property>
1313
<property name="windowTitle">
@@ -68,13 +68,6 @@
6868
</item>
6969
</layout>
7070
</item>
71-
<item>
72-
<widget class="QCheckBox" name="absolutePathCheck">
73-
<property name="text">
74-
<string>Write absolute path</string>
75-
</property>
76-
</widget>
77-
</item>
7871
<item>
7972
<widget class="QCheckBox" name="skipDifferentProjCheck">
8073
<property name="text">

0 commit comments

Comments
 (0)
Please sign in to comment.