PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ test_lwpoly_construct_circle()

static void test_lwpoly_construct_circle ( void  )
static

Definition at line 1373 of file cu_algorithm.c.

1374 {
1375  LWPOLY* p;
1376  const GBOX* g;
1377  const int srid = 4326;
1378  const uint32_t segments_per_quad = 17;
1379  const int x = 10;
1380  const int y = 20;
1381  const int r = 5;
1382 
1383  /* With normal arguments you should get something circle-y */
1384  p = lwpoly_construct_circle(srid, x, y, r, segments_per_quad, LW_TRUE);
1385 
1386  ASSERT_INT_EQUAL(lwgeom_count_vertices(lwpoly_as_lwgeom(p)), segments_per_quad * 4 + 1);
1388 
1390  CU_ASSERT_DOUBLE_EQUAL(g->xmin, x-r, 0.1);
1391  CU_ASSERT_DOUBLE_EQUAL(g->xmax, x+r, 0.1);
1392  CU_ASSERT_DOUBLE_EQUAL(g->ymin, y-r, 0.1);
1393  CU_ASSERT_DOUBLE_EQUAL(g->ymax, y+r, 0.1);
1394 
1395  CU_ASSERT_DOUBLE_EQUAL(lwgeom_area(lwpoly_as_lwgeom(p)), M_PI*5*5, 0.1);
1396 
1397  lwpoly_free(p);
1398 
1399  /* No segments? No circle. */
1400  p = lwpoly_construct_circle(srid, x, y, r, 0, LW_TRUE);
1401  CU_ASSERT_TRUE(p == NULL);
1402 
1403  /* Negative radius? No circle. */
1404  p = lwpoly_construct_circle(srid, x, y, -1e-3, segments_per_quad, LW_TRUE);
1405  CU_ASSERT_TRUE(p == NULL);
1406 
1407  /* Zero radius? Invalid circle */
1408  p = lwpoly_construct_circle(srid, x, y, 0, segments_per_quad, LW_TRUE);
1409  CU_ASSERT_TRUE(p != NULL);
1410  lwpoly_free(p);
1411 }
char * r
Definition: cu_in_wkt.c:24
#define ASSERT_INT_EQUAL(o, e)
int32_t lwgeom_get_srid(const LWGEOM *geom)
Return SRID number.
Definition: lwgeom.c:916
LWGEOM * lwpoly_as_lwgeom(const LWPOLY *obj)
Definition: lwgeom.c:320
LWPOLY * lwpoly_construct_circle(int srid, double x, double y, double radius, uint32_t segments_per_quarter, char exterior)
Definition: lwpoly.c:120
double lwgeom_area(const LWGEOM *geom)
Definition: lwgeom.c:1872
uint32_t lwgeom_count_vertices(const LWGEOM *geom)
Count the total number of vertices in any LWGEOM.
Definition: lwgeom.c:1235
const GBOX * lwgeom_get_bbox(const LWGEOM *lwgeom)
Get a non-empty geometry bounding box, computing and caching it if not already there.
Definition: lwgeom.c:734
void lwpoly_free(LWPOLY *poly)
Definition: lwpoly.c:175
#define LW_TRUE
Return types for functions with status returns.
Definition: liblwgeom.h:76
double ymax
Definition: liblwgeom.h:298
double xmax
Definition: liblwgeom.h:296
double ymin
Definition: liblwgeom.h:297
double xmin
Definition: liblwgeom.h:295
unsigned int uint32_t
Definition: uthash.h:78

References ASSERT_INT_EQUAL, LW_TRUE, lwgeom_area(), lwgeom_count_vertices(), lwgeom_get_bbox(), lwgeom_get_srid(), lwpoly_as_lwgeom(), lwpoly_construct_circle(), lwpoly_free(), r, pixval::x, GBOX::xmax, GBOX::xmin, pixval::y, GBOX::ymax, and GBOX::ymin.

Referenced by algorithms_suite_setup().

Here is the call graph for this function:
Here is the caller graph for this function: