|
| 1 | +#include "pch.h" |
| 2 | +#include "ProjFactory.h" |
| 3 | + |
| 4 | +using namespace SharpProj; |
| 5 | +using namespace SharpProj::Proj; |
| 6 | + |
| 7 | +CoordinateSystem^ ProjFactory::CreateCoordinateSystem(CoordinateSystemType type, int axisCount, array<AxisDefinition^>^ axis) |
| 8 | +{ |
| 9 | + proj_create_cs; // TODO: Implement using this function |
| 10 | + throw gcnew NotImplementedException(); |
| 11 | +} |
| 12 | + |
| 13 | +CoordinateSystem^ ProjFactory::CreateCartesianCoordinateSystem(Cartesian2DType type, String^ unitName, double conversionFactor) |
| 14 | +{ |
| 15 | + if (type < Cartesian2DType::EastingNorthing || type > Cartesian2DType::WestingSouthing) |
| 16 | + throw gcnew ArgumentOutOfRangeException(nameof(type)); |
| 17 | + else if (String::IsNullOrEmpty(unitName)) |
| 18 | + throw gcnew ArgumentNullException(nameof(unitName)); |
| 19 | + |
| 20 | + auto unit_name = utf8_string(unitName); |
| 21 | + |
| 22 | + auto pj = proj_create_cartesian_2D_cs(this, (PJ_CARTESIAN_CS_2D_TYPE)type, unit_name.c_str(), conversionFactor); |
| 23 | + |
| 24 | + if (pj) |
| 25 | + return gcnew CoordinateSystem(m_context, pj); |
| 26 | + else |
| 27 | + throw m_context->ConstructException("CreateCartesianCoordinateSystem"); |
| 28 | +} |
| 29 | + |
| 30 | +CoordinateSystem^ ProjFactory::CreateEllipsoidalCoordinateSystem(Ellipsoidal2DType type, String^ unitName, double conversionFactor) |
| 31 | +{ |
| 32 | + if (type < Ellipsoidal2DType::LongitudeLatitude || type > Ellipsoidal2DType::LatitudeLongitude) |
| 33 | + throw gcnew ArgumentOutOfRangeException(nameof(type)); |
| 34 | + else if (String::IsNullOrEmpty(unitName)) |
| 35 | + throw gcnew ArgumentNullException(nameof(unitName)); |
| 36 | + |
| 37 | + auto unit_name = utf8_string(unitName); |
| 38 | + |
| 39 | + auto pj = proj_create_ellipsoidal_2D_cs(this, (PJ_ELLIPSOIDAL_CS_2D_TYPE)type, unit_name.c_str(), conversionFactor); |
| 40 | + |
| 41 | + if (pj) |
| 42 | + return gcnew CoordinateSystem(m_context, pj); |
| 43 | + else |
| 44 | + throw m_context->ConstructException("CreateEllipsoidalCoordinateSystem"); |
| 45 | +} |
| 46 | + |
| 47 | +CoordinateSystem^ ProjFactory::CreateEllipsoidalCoordinateSystem(Ellipsoidal3DType type, String^ horizontalUnitName, double horizontalConversionFactor, String^ verticalUnitName, double verticalConversionFactor) |
| 48 | +{ |
| 49 | + if (type < Ellipsoidal3DType::LongitudeLatitudeHeight || type > Ellipsoidal3DType::LatitudeLongitudeHeight) |
| 50 | + throw gcnew ArgumentOutOfRangeException(nameof(type)); |
| 51 | + else if (String::IsNullOrEmpty(horizontalUnitName)) |
| 52 | + throw gcnew ArgumentNullException(nameof(horizontalUnitName)); |
| 53 | + else if (String::IsNullOrEmpty(verticalUnitName)) |
| 54 | + throw gcnew ArgumentNullException(nameof(verticallUnitName)); |
| 55 | + |
| 56 | + auto h_unit_name = utf8_string(horizontalUnitName); |
| 57 | + auto v_unit_name = utf8_string(verticalUnitName); |
| 58 | + |
| 59 | + auto pj = proj_create_ellipsoidal_3D_cs(this, (PJ_ELLIPSOIDAL_CS_3D_TYPE)type, |
| 60 | + h_unit_name.c_str(), horizontalConversionFactor, |
| 61 | + v_unit_name.c_str(), verticalConversionFactor); |
| 62 | + |
| 63 | + if (pj) |
| 64 | + return gcnew CoordinateSystem(m_context, pj); |
| 65 | + else |
| 66 | + throw m_context->ConstructException("CreateEllipsoidalCoordinateSystem"); |
| 67 | +} |
0 commit comments