public override TPoint FromGeodetic <TPoint>(TPoint point) { return(MapProjects.GeodeticToMercator(point, this._ellipsoid)); }
public static SqlGeometry GeodeticToMercator(this SqlGeography geometry) { return(Project(geometry, point => MapProjects.GeodeticToMercator(point, IRI.Msh.CoordinateSystem.Ellipsoids.WGS84))); }