Example #1
0
 def fillDesiredSRSEdit( self ):
     dialog = SRSDialog( "Select desired SRS", self )
     if dialog.exec_():
       self.desiredSRSEdit.setText( dialog.getProjection() )
Example #2
0
 def fillTargetSRSEdit(self):
     dialog = SRSDialog( "Select the target SRS", self )
     if dialog.exec_():
       self.targetSRSEdit.setText(dialog.getProjection())
Example #3
0
 def fillSourceSRSEdit(self):
     dialog = SRSDialog("Select the source SRS", self)
     if dialog.exec_():
         self.sourceSRSEdit.setText(dialog.getProjection())
Example #4
0
 def fillTargetSRSEdit(self):
     dialog = SRSDialog("Select the target SRS", self)
     if dialog.exec_():
         self.targetSRSEdit.setText(dialog.getProjection())
Example #5
0
 def fillSourceSRSEdit(self):
     dialog = SRSDialog( "Select the source SRS" )
     if dialog.exec_():
       self.sourceSRSEdit.setText(dialog.getProjection())