1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 11:45:53 +01:00

Added support for non-standard 8-parts CRSs

This commit is contained in:
Martin Tůma 2020-05-02 09:48:30 +02:00
parent 26b5411465
commit c461b2e549

View File

@ -20,6 +20,10 @@ Projection CRS::projection(const QString &crs)
authority = list.at(4); authority = list.at(4);
code = list.at(6); code = list.at(6);
break; break;
case 8:
authority = list.at(4);
code = list.at(7);
break;
default: default:
return Projection(); return Projection();
} }