]> granicus.if.org Git - postgis/commitdiff
Remove now-obsolete TODO comment
authorPaul Ramsey <pramsey@cleverelephant.ca>
Thu, 16 Feb 2012 00:28:04 +0000 (00:28 +0000)
committerPaul Ramsey <pramsey@cleverelephant.ca>
Thu, 16 Feb 2012 00:28:04 +0000 (00:28 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@9215 b70326c6-7e19-0410-871a-916f4a2858ee

libpgcommon/lwgeom_transform.c

index 91fdf7e51b6ba8c3f04e252be61e2b5df38c07a2..09313ac35ae7fa4db43fd660140057196c490c90 100644 (file)
@@ -722,7 +722,6 @@ spheroid_init_from_srid(FunctionCallInfo fcinfo, int srid, SPHEROID *s)
 #if POSTGIS_PROJ_VERSION >= 48
        /* For newer versions of Proj we can pull the spheroid paramaeters and initialize */
        /* using them */
-       /* TODO actually implement this using the API function when it exists */
        pj_get_spheroid_defn(pj1, &major_axis, &eccentricity_squared);
        minor_axis = major_axis * sqrt(1-eccentricity_squared);
        spheroid_init(s, major_axis, minor_axis);