PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ rt_util_extent_type()

rt_extenttype rt_util_extent_type ( const char *  name)

Definition at line 193 of file rt_util.c.

193  {
194  assert(name != NULL && strlen(name) > 0);
195 
196  if (strcmp(name, "UNION") == 0)
197  return ET_UNION;
198  else if (strcmp(name, "FIRST") == 0)
199  return ET_FIRST;
200  else if (strcmp(name, "SECOND") == 0)
201  return ET_SECOND;
202  else if (strcmp(name, "LAST") == 0)
203  return ET_LAST;
204  else if (strcmp(name, "CUSTOM") == 0)
205  return ET_CUSTOM;
206  else
207  return ET_INTERSECTION;
208 }
@ ET_CUSTOM
Definition: librtcore.h:206
@ ET_LAST
Definition: librtcore.h:205
@ ET_INTERSECTION
Definition: librtcore.h:201
@ ET_UNION
Definition: librtcore.h:202
@ ET_SECOND
Definition: librtcore.h:204
@ ET_FIRST
Definition: librtcore.h:203

References ET_CUSTOM, ET_FIRST, ET_INTERSECTION, ET_LAST, ET_SECOND, and ET_UNION.

Referenced by RASTER_mapAlgebra2(), RASTER_nMapAlgebra(), and RASTER_nMapAlgebraExpr().

Here is the caller graph for this function: