/// <summary> /// Instantiate a Meractor projection with this reference Ellipsoid /// </summary> /// <param name="referenceGlobe"></param> protected MercatorProjection(Ellipsoid referenceGlobe) { ReferenceGlobe = referenceGlobe; }
/// <summary> /// Instantiate an UTM projection with this reference Ellipsoid /// </summary> /// <param name="referenceGlobe">The reference Ellipsoid</param> public UtmProjection(Ellipsoid referenceGlobe) : base(referenceGlobe) { _m = new MathConsts(referenceGlobe); }
/// <summary> /// Instantiate a calculator for the specified reference Ellipsoid /// </summary> /// <param name="referenceGlobe">The reference Ellipsoid</param> public GeodeticCalculator(Ellipsoid referenceGlobe) { ReferenceGlobe = referenceGlobe; }
/// <summary> /// Instantiate a projection with the given reference Ellipsoid /// </summary> /// <param name="referenceGlobe">The reference Ellipsoid</param> protected GlobalMercatorProjection(Ellipsoid referenceGlobe) : base(referenceGlobe) { }
/// <summary> /// Instantiate an elliptical Mercator projection with this reference Ellipsoid /// </summary> /// <param name="referenceGlobe">The reference Ellipsoid for the projection</param> public EllipticalMercatorProjection(Ellipsoid referenceGlobe) : base(referenceGlobe) { }