PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ geography_from_text()

Datum geography_from_text ( PG_FUNCTION_ARGS  )

Definition at line 557 of file geography_inout.c.

558 {
559  LWGEOM_PARSER_RESULT lwg_parser_result;
560  GSERIALIZED *g_ser = NULL;
561  text *wkt_text = PG_GETARG_TEXT_P(0);
562 
563  /* Extract the cstring from the varlena */
564  char *wkt = text_to_cstring(wkt_text);
565 
566  /* Pass the cstring to the input parser, and magic occurs! */
567  if ( lwgeom_parse_wkt(&lwg_parser_result, wkt, LW_PARSER_CHECK_ALL) == LW_FAILURE )
568  PG_PARSER_ERROR(lwg_parser_result);
569 
570  /* Error on any SRID != default */
571  srid_is_latlong(fcinfo, lwg_parser_result.geom->srid);
572 
573  /* Clean up string */
574  pfree(wkt);
575  g_ser = gserialized_geography_from_lwgeom(lwg_parser_result.geom, -1);
576 
577  /* Clean up temporary object */
578  lwgeom_free(lwg_parser_result.geom);
579 
580  PG_RETURN_POINTER(g_ser);
581 }
GSERIALIZED * gserialized_geography_from_lwgeom(LWGEOM *lwgeom, int32 geog_typmod)
#define LW_PARSER_CHECK_ALL
Definition: liblwgeom.h:2006
#define LW_FAILURE
Definition: liblwgeom.h:79
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1144
int lwgeom_parse_wkt(LWGEOM_PARSER_RESULT *parser_result, char *wktstr, int parse_flags)
Parse a WKT geometry string into an LWGEOM structure.
char * text_to_cstring(const text *textptr)
int32_t srid
Definition: liblwgeom.h:402
Parser result structure: returns the result of attempting to convert (E)WKT/(E)WKB to LWGEOM.
Definition: liblwgeom.h:2013

References struct_lwgeom_parser_result::geom, gserialized_geography_from_lwgeom(), LW_FAILURE, LW_PARSER_CHECK_ALL, lwgeom_free(), lwgeom_parse_wkt(), LWGEOM::srid, and text_to_cstring().

Here is the call graph for this function: