1116 TupleDesc resultTupleDesc;
1117 HeapTuple resultTuple;
1119 Datum result_values[2];
1120 bool result_is_null[2];
1123 if (PG_ARGISNULL(0))
1126 geom = PG_GETARG_GSERIALIZED_P(0);
1138 if (!(mbc && mbc->
center))
1140 lwpgerror(
"Error calculating minimum bounding circle.");
1152 center = geometry_serialize(lwcenter);
1155 get_call_result_type(fcinfo, NULL, &resultTupleDesc);
1156 BlessTupleDesc(resultTupleDesc);
1158 result_values[0] = PointerGetDatum(center);
1159 result_is_null[0] =
false;
1160 result_values[1] = Float8GetDatum(radius);
1161 result_is_null[1] =
false;
1163 resultTuple = heap_form_tuple(resultTupleDesc, result_values, result_is_null);
1165 result = HeapTupleGetDatum(resultTuple);
char result[OUT_DOUBLE_BUFFER_SIZE]
int32_t gserialized_get_srid(const GSERIALIZED *g)
Extract the SRID from the serialized form (it is packed into three bytes so this is a handy function)...
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
int gserialized_is_empty(const GSERIALIZED *g)
Check if a GSERIALIZED is empty without deserializing first.
LWPOINT * lwpoint_construct_empty(int32_t srid, char hasz, char hasm)
LWPOINT * lwpoint_make2d(int32_t srid, double x, double y)
void lwgeom_free(LWGEOM *geom)
LWBOUNDINGCIRCLE * lwgeom_calculate_mbc(const LWGEOM *g)
void lwboundingcircle_destroy(LWBOUNDINGCIRCLE *c)