public override IPoint FromGeodetic(IPoint point)
 {
     return(MapProjects.GeodeticToCylindricalEqualArea(point, this._ellipsoid));
 }
Example #2
0
 public static SqlGeometry GeodeticToCylindricalEqualArea(this SqlGeography geometry)
 {
     return(Project(geometry, point => MapProjects.GeodeticToCylindricalEqualArea <Point>(point, IRI.Msh.CoordinateSystem.Ellipsoids.WGS84)));
 }