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