PostGIS
3.4.0dev-r@@SVN_REVISION@@
|
#include "../postgis_config.h"
#include "liblwgeom_internal.h"
#include "lwgeom_log.h"
#include <string.h>
Go to the source code of this file.
Functions | |
static void | to_rad (POINT4D *pt) |
convert decimal degress to radians More... | |
static void | to_dec (POINT4D *pt) |
convert radians to decimal degress More... | |
LWPROJ * | lwproj_from_str (const char *str_in, const char *str_out) |
Allocate a new LWPROJ containing the reference to the PROJ's PJ If extra_geography_data is true, it will generate the following values for the source srs: is_latlong (geometric or not) and spheroid values. More... | |
LWPROJ * | lwproj_from_str_pipeline (const char *str_pipeline, bool is_forward) |
Allocate a new LWPROJ containing the reference to the PROJ's PJ using a PROJ pipeline definition: More... | |
int | lwgeom_transform_from_str (LWGEOM *geom, const char *instr, const char *outstr) |
int | lwgeom_transform_pipeline (LWGEOM *geom, const char *pipelinestr, bool is_forward) |
Transform (reproject) a geometry in-place using a PROJ pipeline. More... | |
int | box3d_transform (GBOX *gbox, LWPROJ *pj) |
int | ptarray_transform (POINTARRAY *pa, LWPROJ *pj) |
int | lwgeom_transform (LWGEOM *geom, LWPROJ *pj) |
Transform given LWGEOM geometry from inpj projection to outpj projection. More... | |