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