MCPcopy Index your code
hub / github.com/MapServer/MapServer / FLTIsBBoxFilter

Function FLTIsBBoxFilter

mapogcfilter.c:1778–1794  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1776}
1777
1778int FLTIsBBoxFilter(FilterEncodingNode *psFilterNode)
1779{
1780 if (!psFilterNode || !psFilterNode->pszValue)
1781 return 0;
1782
1783 if (strcasecmp(psFilterNode->pszValue, "BBOX") == 0)
1784 return 1;
1785
1786 /* if (strcasecmp(psFilterNode->pszValue, "AND") == 0)
1787 {
1788 if (strcasecmp(psFilterNode->psLeftNode->pszValue, "BBOX") ==0 ||
1789 strcasecmp(psFilterNode->psRightNode->pszValue, "BBOX") ==0)
1790 return 1;
1791 }
1792 */
1793 return 0;
1794}
1795
1796shapeObj *FLTGetShape(FilterEncodingNode *psFilterNode, double *pdfDistance,
1797 int *pnUnit)

Callers 2

FLTHasSpatialFilterFunction · 0.85

Calls 1

strcasecmpFunction · 0.85

Tested by

no test coverage detected