1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2025-02-16 07:40:49 +01:00

Updated PCS list

This commit is contained in:
Martin Tůma 2018-05-14 00:37:19 +02:00
parent 7a702be012
commit 5f47383648
3 changed files with 1907 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -7,6 +7,9 @@ CoordinateSystem::CoordinateSystem(int code)
case 1035: case 1035:
case 1039: case 1039:
case 4400: case 4400:
case 4402:
case 4404:
case 4405:
case 4409: case 4409:
case 4463: case 4463:
case 4464: case 4464:

View File

@ -15,6 +15,15 @@ LinearUnits::LinearUnits(int code)
case 9040: case 9040:
_f = 36.0 / 39.370147; _f = 36.0 / 39.370147;
break; break;
case 9041:
_f = 12.0 / 39.370147;
break;
case 9042:
_f = 792.0 / 39.370147;
break;
case 9094:
_f = 6378300.0 / 20926201.0;
break;
default: default:
_f = NAN; _f = NAN;
} }