mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-12-03 16:09:08 +01:00
Added missing UTM S/N handling
This commit is contained in:
parent
c1a1c3425b
commit
fb34f5c7db
@ -71,6 +71,8 @@ static Projection parseProjection(const QString &str, const GCS *gcs)
|
|||||||
zone = fields.at(2).toInt(&ret);
|
zone = fields.at(2).toInt(&ret);
|
||||||
if (!ret)
|
if (!ret)
|
||||||
return Projection();
|
return Projection();
|
||||||
|
if (fields.at(3) == "S")
|
||||||
|
zone = -zone;
|
||||||
pcs = PCS(gcs, 9807, UTM::setup(zone), 9001);
|
pcs = PCS(gcs, 9807, UTM::setup(zone), 9001);
|
||||||
return Projection(&pcs);
|
return Projection(&pcs);
|
||||||
case 1:
|
case 1:
|
||||||
|
Loading…
Reference in New Issue
Block a user