PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ test_lw_dist2d_ptarray_ptarrayarc()

static void test_lw_dist2d_ptarray_ptarrayarc ( void  )
static

Definition at line 995 of file cu_measures.c.

References cu_error_msg, cu_error_msg_reset(), DIST_MIN, DISTPTS::distance, lw_dist2d_distpts_init(), lw_dist2d_ptarray_ptarrayarc(), LW_FAILURE, LW_SUCCESS, lwgeom_as_lwline(), lwgeom_from_text(), lwline_free(), and LWLINE::points.

Referenced by measures_suite_setup().

996 {
997  /* int lw_dist2d_ptarray_ptarrayarc(const POINTARRAY *pa, const POINTARRAY *pb, DISTPTS *dl) */
998  DISTPTS dl;
999  int rv;
1000  LWLINE *lwline1;
1001  LWLINE *lwline2;
1002 
1003  /* Unit semi-circle above X axis */
1004  lwline1 = lwgeom_as_lwline(lwgeom_from_text("LINESTRING(-1 0, 0 1, 1 0)"));
1005 
1006  /* Line above top of semi-circle */
1007  lwline2 = lwgeom_as_lwline(lwgeom_from_text("LINESTRING(-2 2, -1 2, 1 2, 2 2)"));
1009  rv = lw_dist2d_ptarray_ptarrayarc(lwline2->points, lwline1->points, &dl);
1010  CU_ASSERT_EQUAL( rv, LW_SUCCESS );
1011  CU_ASSERT_DOUBLE_EQUAL(dl.distance, 1, 0.000001);
1012 
1013  /* Reversed arguments, should fail */
1016  rv = lw_dist2d_ptarray_ptarrayarc(lwline1->points, lwline2->points, &dl);
1017  //printf("%s\n", cu_error_msg);
1018  CU_ASSERT_EQUAL( rv, LW_FAILURE );
1019  CU_ASSERT_STRING_EQUAL("lw_dist2d_ptarray_ptarrayarc called with non-arc input", cu_error_msg);
1020 
1021  lwline_free(lwline2);
1022 
1023  /* Line along side of semi-circle */
1024  lwline2 = lwgeom_as_lwline(lwgeom_from_text("LINESTRING(-2 -3, -2 -2, -2 2, -2 3)"));
1026  rv = lw_dist2d_ptarray_ptarrayarc(lwline2->points, lwline1->points, &dl);
1027  CU_ASSERT_EQUAL( rv, LW_SUCCESS );
1028  CU_ASSERT_DOUBLE_EQUAL(dl.distance, 1, 0.000001);
1029 
1030  /* Four unit semi-circles surrounding the 2x2 box around origin */
1031  lwline_free(lwline1);
1032  lwline_free(lwline2);
1033  lwline1 = lwgeom_as_lwline(lwgeom_from_text("LINESTRING(-1 -1, -2 0, -1 1, 0 2, 1 1, 2 0, 1 -1, 0 -2, -1 -1)"));
1034  lwline2 = lwgeom_as_lwline(lwgeom_from_text("LINESTRING(-2.5 -3, -2.5 -2, -2.5 2, -2.5 3)"));
1035  rv = lw_dist2d_ptarray_ptarrayarc(lwline2->points, lwline1->points, &dl);
1036  CU_ASSERT_EQUAL( rv, LW_SUCCESS );
1037  CU_ASSERT_DOUBLE_EQUAL(dl.distance, 0.5, 0.000001);
1038 
1039  lwline_free(lwline2);
1040  lwline_free(lwline1);
1041 }
#define LW_SUCCESS
Definition: liblwgeom.h:80
void lwline_free(LWLINE *line)
Definition: lwline.c:76
static LWGEOM * lwgeom_from_text(const char *str)
Definition: cu_measures.c:25
#define LW_FAILURE
Definition: liblwgeom.h:79
#define DIST_MIN
Definition: measures.h:44
void cu_error_msg_reset()
int lw_dist2d_ptarray_ptarrayarc(const POINTARRAY *pa, const POINTARRAY *pb, DISTPTS *dl)
Test each segment of pa against each arc of pb for distance.
Definition: measures.c:1183
LWLINE * lwgeom_as_lwline(const LWGEOM *lwgeom)
Definition: lwgeom.c:138
double distance
Definition: measures.h:51
Structure used in distance-calculations.
Definition: measures.h:49
void lw_dist2d_distpts_init(DISTPTS *dl, int mode)
Definition: measures.c:67
char cu_error_msg[MAX_CUNIT_ERROR_LENGTH+1]
POINTARRAY * points
Definition: liblwgeom.h:422
Here is the call graph for this function:
Here is the caller graph for this function: