You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When selecting the System_from and System_to CRS to define a transformation an error appears, indicating:
An error has occured while executing Python code:
Traceback (most recent call last):
File "/home/rph/.qgis//python/plugins/TransformationTools/editTransformationDlg.py", line 51, in selectInputCrs
self.inputCrsEdit.setText(dlg.getProjection())
File "/home/rph/.qgis//python/plugins/TransformationTools/selectCrsDlg.py", line 52, in getProjection
if self.selector.selectedEpsg() != 0:
AttributeError: 'QgsProjectionSelector' object has no attribute 'selectedEpsg'
I edited the file "selectCrsDlg.py" and changed lines 45 and 51 to the following:
line 45:
WAS:
return "EPSG:" + str(self.selector.selectedEpsg())
CHANGED TO:
return str(self.selector.selectedAuthId())
line 51:
WAS:
if self.selector.selectedEpsg() != 0:
CHANGED TO:
if self.selector.selectedAuthId() != 0:
The text was updated successfully, but these errors were encountered:
When selecting the System_from and System_to CRS to define a transformation an error appears, indicating:
I edited the file "selectCrsDlg.py" and changed lines 45 and 51 to the following:
line 45:
WAS:
return "EPSG:" + str(self.selector.selectedEpsg())
CHANGED TO:
return str(self.selector.selectedAuthId())
line 51:
WAS:
if self.selector.selectedEpsg() != 0:
CHANGED TO:
if self.selector.selectedAuthId() != 0:
The text was updated successfully, but these errors were encountered: