PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ geography_from_text()

Datum geography_from_text ( PG_FUNCTION_ARGS  )

Definition at line 490 of file geography_inout.c.

491 {
492  LWGEOM_PARSER_RESULT lwg_parser_result;
493  GSERIALIZED *g_ser = NULL;
494  text *wkt_text = PG_GETARG_TEXT_P(0);
495 
496  /* Extract the cstring from the varlena */
497  char *wkt = text_to_cstring(wkt_text);
498 
499  /* Pass the cstring to the input parser, and magic occurs! */
500  if ( lwgeom_parse_wkt(&lwg_parser_result, wkt, LW_PARSER_CHECK_ALL) == LW_FAILURE )
501  PG_PARSER_ERROR(lwg_parser_result);
502 
503  /* Error on any SRID != default */
504  srid_check_latlong(fcinfo, lwg_parser_result.geom->srid);
505 
506  /* Clean up string */
507  pfree(wkt);
508  g_ser = gserialized_geography_from_lwgeom(lwg_parser_result.geom, -1);
509 
510  /* Clean up temporary object */
511  lwgeom_free(lwg_parser_result.geom);
512 
513  PG_RETURN_POINTER(g_ser);
514 }
GSERIALIZED * gserialized_geography_from_lwgeom(LWGEOM *lwgeom, int32 geog_typmod)
#define LW_PARSER_CHECK_ALL
Definition: liblwgeom.h:2061
#define LW_FAILURE
Definition: liblwgeom.h:110
void lwgeom_free(LWGEOM *geom)
Definition: lwgeom.c:1138
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:446
Parser result structure: returns the result of attempting to convert (E)WKT/(E)WKB to LWGEOM.
Definition: liblwgeom.h:2068

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: