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