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

Added missing OziExplorer projections

This commit is contained in:
Martin Tůma 2024-03-20 08:29:55 +01:00
parent 07435a3fdc
commit 2eeeb965dc

View File

@ -220,6 +220,12 @@ bool MapFile::createProjection(const QString &datum, const QString &name,
else if (name == "(SUI) Swiss Grid")
pcs = PCS(gcs, Conversion(9815, Conversion::Setup(46.570866, 7.26225,
1.0, 600000, 200000, 90.0, 90.0), 9001));
else if (name == "(ITA1) Italy Grid Zone 1")
pcs = PCS(gcs, Conversion(9807, Conversion::Setup(0, 9, 0.9996, 1500000,
0, NAN, NAN), 9001));
else if (name == "(ITA2) Italy Grid Zone 2")
pcs = PCS(gcs, Conversion(9807, Conversion::Setup(0, 15, 0.9996,
2520000, 0, NAN, NAN), 9001));
else {
_errorString = QString("%1: Unknown map projection").arg(name);
return false;