Add Nad27UtmProjection

This commit is contained in:
ClemensFischer 2022-12-13 23:25:05 +01:00
parent 7cf4ed47a3
commit 57e614978b
3 changed files with 60 additions and 27 deletions

View file

@ -36,6 +36,10 @@ namespace MapControl
projection = new Etrs89UtmProjection(epsgCode % 100);
break;
case var c when c >= Nad27UtmProjection.FirstZoneEpsgCode && c <= Nad27UtmProjection.LastZoneEpsgCode:
projection = new Nad27UtmProjection(epsgCode % 100);
break;
case var c when c >= Wgs84UtmProjection.FirstZoneNorthEpsgCode && c <= Wgs84UtmProjection.LastZoneNorthEpsgCode:
projection = new Wgs84UtmProjection(epsgCode % 100, true);
break;