Definition at line 629 of file lwgeom_functions_lrs.c.
630{
631 uint32_t i;
632 int ngeoms=0;
634
635 POSTGIS_DEBUGF(2, "lwcollection_locate_between_m called for lwcoll %p", lwcoll);
636
638 for (i=0; i<lwcoll->
ngeoms; i++)
639 {
641 m0, m1);
642 if ( sub != NULL )
643 geoms[ngeoms++] = sub;
644 }
645
646 if ( ngeoms == 0 ) return NULL;
647
649 lwcoll->
srid, NULL, ngeoms, geoms);
650}
LWCOLLECTION * lwcollection_construct(uint8_t type, int32_t srid, GBOX *bbox, uint32_t ngeoms, LWGEOM **geoms)
void * lwalloc(size_t size)
static LWGEOM * lwgeom_locate_between_m(LWGEOM *lwin, double m0, double m1)
References COLLECTIONTYPE, LWCOLLECTION::geoms, lwalloc(), lwcollection_construct(), lwgeom_locate_between_m(), LWCOLLECTION::ngeoms, and LWCOLLECTION::srid.
Referenced by lwgeom_locate_between_m().