We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
qgis
Learn more about funding links in repositories.
Report abuse
There was an error while loading. Please reload this page.
1 parent c724ca7 commit 9fd773aCopy full SHA for 9fd773a
src/plugins/georeferencer/qgstransformsettingsdialog.cpp
@@ -157,7 +157,17 @@ void QgsTransformSettingsDialog::on_tbnTargetSRS_clicked()
157
158
if (srsSelector.exec())
159
{
160
- QString srs = QString("EPSG: %1").arg(projSelector->selectedEpsg());
+ QString srs;
161
+ // If the selected target SRS has an EPSG ID, use this as identification
162
+ if (projSelector->selectedEpsg())
163
+ {
164
+ srs = QString("EPSG: %1").arg(projSelector->selectedEpsg());
165
+ }
166
+ else
167
168
+ // Describe target SRS by its proj4 string
169
+ srs = projSelector->selectedProj4String();
170
171
leTargetSRS->setText(srs);
172
}
173
0 commit comments