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() )
def fillSourceSRSEdit(self): dialog = SRSDialog("Select the source SRS", self) if dialog.exec_(): self.sourceSRSEdit.setText(dialog.getProjection())