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:
parent
26b5411465
commit
c461b2e549
@ -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();
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user