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