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

Function FLTIsPointFilter

mapogcfilter.c:1765–1776  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1763}
1764
1765int FLTIsPointFilter(FilterEncodingNode *psFilterNode)
1766{
1767 if (!psFilterNode || !psFilterNode->pszValue)
1768 return 0;
1769
1770 if (psFilterNode->eType == FILTER_NODE_TYPE_SPATIAL &&
1771 psFilterNode->psRightNode &&
1772 psFilterNode->psRightNode->eType == FILTER_NODE_TYPE_GEOMETRY_POINT)
1773 return 1;
1774
1775 return 0;
1776}
1777
1778int FLTIsBBoxFilter(FilterEncodingNode *psFilterNode)
1779{

Callers 1

FLTHasSpatialFilterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected