postgis/liblwgeom/lwgeom_transform.c
2012-02-04 01:30:14 +00:00

205 lines
4.3 KiB
C

/**********************************************************************
*
* PostGIS - Spatial Types for PostgreSQL
* http://postgis.refractions.net
*
* Copyright (C) 2001-2003 Refractions Research Inc.
*
* This is free software; you can redistribute and/or modify it under
* the terms of the GNU General Public Licence. See the COPYING file.
*
**********************************************************************/
#include "liblwgeom.h"
#include "lwgeom_log.h"
#include <string.h>
/** convert decimal degress to radians */
static void
to_rad(POINT4D *pt)
{
pt->x *= M_PI/180.0;
pt->y *= M_PI/180.0;
}
/** convert radians to decimal degress */
static void
to_dec(POINT4D *pt)
{
pt->x *= 180.0/M_PI;
pt->y *= 180.0/M_PI;
}
/**
* Transform given SERIALIZED geometry
* from inpj projection to outpj projection
*/
int
lwgeom_transform(LWGEOM *geom, projPJ inpj, projPJ outpj)
{
int j, i;
int type = geom->type;
POINT4D p;
POINTARRAY *pa;
/* No points to transform in an empty! */
if ( lwgeom_is_empty(geom) )
return LW_SUCCESS;
switch(type)
{
case POINTTYPE:
case LINETYPE:
case CIRCSTRINGTYPE:
case TRIANGLETYPE:
{
LWLINE *g = (LWLINE*)geom;
pa = g->points;
for ( i = 0; i < pa->npoints; i++ )
{
getPoint4d_p(pa, i, &p);
point4d_transform(&p, inpj, outpj);
ptarray_set_point4d(pa, i, &p);
}
break;
}
case POLYGONTYPE:
{
LWPOLY *g = (LWPOLY*)geom;
for ( j = 0; j < g->nrings; j++ )
{
pa = g->rings[j];
for ( i = 0; i < pa->npoints; i++ )
{
getPoint4d_p(pa, i, &p);
point4d_transform(&p, inpj, outpj);
ptarray_set_point4d(pa, i, &p);
}
}
break;
}
case MULTIPOINTTYPE:
case MULTILINETYPE:
case MULTIPOLYGONTYPE:
case COLLECTIONTYPE:
case COMPOUNDTYPE:
case CURVEPOLYTYPE:
case MULTICURVETYPE:
case MULTISURFACETYPE:
case POLYHEDRALSURFACETYPE:
case TINTYPE:
{
LWCOLLECTION *g = (LWCOLLECTION*)geom;
for ( i = 0; i < g->ngeoms; i++ )
{
lwgeom_transform(g->geoms[i], inpj, outpj);
}
break;
}
default:
{
lwerror("lwgeom_transform: Cannot handle type '%s'", lwtype_name(type));
return LW_FAILURE;
}
}
return LW_SUCCESS;
}
int
point4d_transform(POINT4D *pt, projPJ srcpj, projPJ dstpj)
{
int* pj_errno_ref;
POINT4D orig_pt;
/* Make a copy of the input point so we can report the original should an error occur */
orig_pt.x = pt->x;
orig_pt.y = pt->y;
orig_pt.z = pt->z;
if (pj_is_latlong(srcpj)) to_rad(pt) ;
LWDEBUGF(4, "transforming POINT(%f %f) from '%s' to '%s'", orig_pt.x, orig_pt.y, pj_get_def(srcpj,0), pj_get_def(dstpj,0));
/* Perform the transform */
pj_transform(srcpj, dstpj, 1, 0, &(pt->x), &(pt->y), &(pt->z));
/* For NAD grid-shift errors, display an error message with an additional hint */
pj_errno_ref = pj_get_errno_ref();
if (*pj_errno_ref != 0)
{
if (*pj_errno_ref == -38)
{
lwnotice("PostGIS was unable to transform the point because either no grid shift files were found, or the point does not lie within the range for which the grid shift is defined. Refer to the ST_Transform() section of the PostGIS manual for details on how to configure PostGIS to alter this behaviour.");
lwerror("transform: couldn't project point (%g %g %g): %s (%d)",
orig_pt.x, orig_pt.y, orig_pt.z, pj_strerrno(*pj_errno_ref), *pj_errno_ref);
return 0;
}
else
{
lwerror("transform: couldn't project point (%g %g %g): %s (%d)",
orig_pt.x, orig_pt.y, orig_pt.z, pj_strerrno(*pj_errno_ref), *pj_errno_ref);
return 0;
}
}
if (pj_is_latlong(dstpj)) to_dec(pt);
return 1;
}
projPJ
lwproj_from_string(const char *str1)
{
int t;
char *params[1024]; /* one for each parameter */
char *loc;
char *str;
size_t slen;
projPJ result;
if (str1 == NULL) return NULL;
slen = strlen(str1);
if (slen == 0) return NULL;
str = lwalloc(slen+1);
strcpy(str, str1);
/*
* first we split the string into a bunch of smaller strings,
* based on the " " separator
*/
params[0] = str; /* 1st param, we'll null terminate at the " " soon */
loc = str;
t = 1;
while ((loc != NULL) && (*loc != 0) )
{
loc = strchr(loc, ' ');
if (loc != NULL)
{
*loc = 0; /* null terminate */
params[t] = loc+1;
loc++; /* next char */
t++; /*next param */
}
}
if (!(result=pj_init(t, params)))
{
lwfree(str);
return NULL;
}
lwfree(str);
return result;
}