From d1ab3a345c5616b0c0d348b429d84df9bf870261 Mon Sep 17 00:00:00 2001 From: Damian Nowosinski Date: Wed, 26 Aug 2026 15:24:20 +0200 Subject: [PATCH] Access modifiers changed from internal to public --- .../CoordinateSystems/Transformations/ConcatenatedTransform.cs | 2 +- .../Transformations/CoordinateTransformation.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ProjNet/CoordinateSystems/Transformations/ConcatenatedTransform.cs b/src/ProjNet/CoordinateSystems/Transformations/ConcatenatedTransform.cs index 9674db5c..2a056e12 100644 --- a/src/ProjNet/CoordinateSystems/Transformations/ConcatenatedTransform.cs +++ b/src/ProjNet/CoordinateSystems/Transformations/ConcatenatedTransform.cs @@ -25,7 +25,7 @@ namespace ProjNet.CoordinateSystems.Transformations /// /// [Serializable] - internal class ConcatenatedTransform : MathTransform, ICoordinateTransformationCore + public class ConcatenatedTransform : MathTransform, ICoordinateTransformationCore { /// /// diff --git a/src/ProjNet/CoordinateSystems/Transformations/CoordinateTransformation.cs b/src/ProjNet/CoordinateSystems/Transformations/CoordinateTransformation.cs index b44570c6..5f9dcf57 100644 --- a/src/ProjNet/CoordinateSystems/Transformations/CoordinateTransformation.cs +++ b/src/ProjNet/CoordinateSystems/Transformations/CoordinateTransformation.cs @@ -39,7 +39,7 @@ public class CoordinateTransformation : ICoordinateTransformation /// Authority code /// Area of use /// Remarks - internal CoordinateTransformation(CoordinateSystem sourceCS, CoordinateSystem targetCS, TransformType transformType, MathTransform mathTransform, + public CoordinateTransformation(CoordinateSystem sourceCS, CoordinateSystem targetCS, TransformType transformType, MathTransform mathTransform, string name, string authority, long authorityCode, string areaOfUse, string remarks) { TargetCS = targetCS;