PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ BOX2D_above()

Datum BOX2D_above ( PG_FUNCTION_ARGS  )

Definition at line 290 of file lwgeom_box.c.

References BOX2D_overabove(), PG_FUNCTION_INFO_V1(), GBOX::ymax, and GBOX::ymin.

Referenced by BOX2D_below().

291 {
292  GBOX *box1 = (GBOX *) PG_GETARG_POINTER(0);
293  GBOX *box2 = (GBOX *) PG_GETARG_POINTER(1);
294 
295  PG_RETURN_BOOL(FPgt(box1->ymin, box2->ymax));
296 }
double ymin
Definition: liblwgeom.h:294
double ymax
Definition: liblwgeom.h:295
Here is the call graph for this function:
Here is the caller graph for this function: