PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ ST_LineCrossingDirection()

Datum ST_LineCrossingDirection ( PG_FUNCTION_ARGS  )

Definition at line 435 of file lwgeom_functions_analytic.c.

436 {
437  int type1, type2, rv;
438  LWLINE *l1 = NULL;
439  LWLINE *l2 = NULL;
440  GSERIALIZED *geom1 = PG_GETARG_GSERIALIZED_P(0);
441  GSERIALIZED *geom2 = PG_GETARG_GSERIALIZED_P(1);
442 
444 
445  type1 = gserialized_get_type(geom1);
446  type2 = gserialized_get_type(geom2);
447 
448  if ( type1 != LINETYPE || type2 != LINETYPE )
449  {
450  elog(ERROR,"This function only accepts LINESTRING as arguments.");
451  PG_RETURN_NULL();
452  }
453 
456 
457  rv = lwline_crossing_direction(l1, l2);
458 
459  PG_FREE_IF_COPY(geom1, 0);
460  PG_FREE_IF_COPY(geom2, 1);
461 
462  PG_RETURN_INT32(rv);
463 
464 }
int32_t gserialized_get_srid(const GSERIALIZED *s)
Extract the SRID from the serialized form (it is packed into three bytes so this is a handy function)...
Definition: g_serialized.c:100
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
uint32_t gserialized_get_type(const GSERIALIZED *s)
Extract the geometry type from the serialized form (it hides in the anonymous data area,...
Definition: g_serialized.c:86
LWLINE * lwgeom_as_lwline(const LWGEOM *lwgeom)
Definition: lwgeom.c:170
#define LINETYPE
Definition: liblwgeom.h:86
int lwline_crossing_direction(const LWLINE *l1, const LWLINE *l2)
Given two lines, characterize how (and if) they cross each other.
Definition: lwalgorithm.c:461
void error_if_srid_mismatch(int srid1, int srid2)
Definition: lwutil.c:338

References error_if_srid_mismatch(), gserialized_get_srid(), gserialized_get_type(), LINETYPE, lwgeom_as_lwline(), lwgeom_from_gserialized(), and lwline_crossing_direction().

Here is the call graph for this function: