PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ test_lwline_from_lwmpoint()

static void test_lwline_from_lwmpoint ( void  )
static

Definition at line 1025 of file cu_libgeom.c.

1026 {
1027  LWLINE *line;
1028  LWMPOINT *mpoint;
1029 
1030 // LWLINE *
1031 // lwline_from_lwmpoint(int srid, LWMPOINT *mpoint)
1032 
1033  mpoint = (LWMPOINT*)lwgeom_from_wkt("MULTIPOINT(0 0, 0 1, 1 1, 1 2, 2 2)", LW_PARSER_CHECK_NONE);
1034  line = lwline_from_lwmpoint(SRID_DEFAULT, mpoint);
1035  CU_ASSERT_EQUAL(line->points->npoints, mpoint->ngeoms);
1036  CU_ASSERT_DOUBLE_EQUAL(lwline_length_2d(line), 4.0, 0.000001);
1037 
1038  lwline_free(line);
1039  lwmpoint_free(mpoint);
1040 }
void lwmpoint_free(LWMPOINT *mpt)
Definition: lwmpoint.c:72
#define LW_PARSER_CHECK_NONE
Definition: liblwgeom.h:2005
#define SRID_DEFAULT
Definition: liblwgeom.h:198
LWLINE * lwline_from_lwmpoint(int srid, const LWMPOINT *mpoint)
Definition: lwline.c:284
LWGEOM * lwgeom_from_wkt(const char *wkt, const char check)
Definition: lwin_wkt.c:904
void lwline_free(LWLINE *line)
Definition: lwline.c:76
double lwline_length_2d(const LWLINE *line)
Definition: lwline.c:534
POINTARRAY * points
Definition: liblwgeom.h:425
uint32_t ngeoms
Definition: liblwgeom.h:471
uint32_t npoints
Definition: liblwgeom.h:374

References LW_PARSER_CHECK_NONE, lwgeom_from_wkt(), lwline_free(), lwline_from_lwmpoint(), lwline_length_2d(), lwmpoint_free(), LWMPOINT::ngeoms, POINTARRAY::npoints, LWLINE::points, and SRID_DEFAULT.

Referenced by libgeom_suite_setup().

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