663{
669 TupleDesc resultTupleDesc;
670 HeapTuple resultTuple;
672 Datum result_values[2];
673 bool result_is_null[2];
674 double radius = 0;
675
676 if (PG_ARGISNULL(0))
677 PG_RETURN_NULL();
678
679 geom = PG_GETARG_GSERIALIZED_P(0);
680
681
683 {
685 }
686 else
687 {
690
691 if (!(mbc && mbc->
center))
692 {
693 lwpgerror("Error calculating minimum bounding circle.");
695 PG_RETURN_NULL();
696 }
697
700
703 }
704
705 center = geometry_serialize(lwcenter);
707
708 get_call_result_type(fcinfo, NULL, &resultTupleDesc);
709 BlessTupleDesc(resultTupleDesc);
710
711 result_values[0] = PointerGetDatum(center);
712 result_is_null[0] = false;
713 result_values[1] = Float8GetDatum(radius);
714 result_is_null[1] = false;
715
716 resultTuple = heap_form_tuple(resultTupleDesc, result_values, result_is_null);
717
718 result = HeapTupleGetDatum(resultTuple);
719
721}
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.
void lwgeom_free(LWGEOM *geom)
LWBOUNDINGCIRCLE * lwgeom_calculate_mbc(const LWGEOM *g)
LWPOINT * lwpoint_make2d(int32_t srid, double x, double y)
void lwboundingcircle_destroy(LWBOUNDINGCIRCLE *c)
LWPOINT * lwpoint_construct_empty(int32_t srid, char hasz, char hasm)