1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-28 05:34:47 +01:00

Added missing UTM S/N handling

This commit is contained in:
Martin Tůma 2019-03-02 18:49:01 +01:00
parent c1a1c3425b
commit fb34f5c7db

View File

@ -71,6 +71,8 @@ static Projection parseProjection(const QString &str, const GCS *gcs)
zone = fields.at(2).toInt(&ret);
if (!ret)
return Projection();
if (fields.at(3) == "S")
zone = -zone;
pcs = PCS(gcs, 9807, UTM::setup(zone), 9001);
return Projection(&pcs);
case 1: