swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: a383f5c725f9f2d607c94fcc71a02a9c3448748a authored by Eric Fischer on 18 April 2018, 17:48:13 UTC
Use an exit status of 100 if some but not all zoom levels succeeded
Tip revision: a383f5c
evaluator.hpp
#ifndef EVALUATOR_HPP
#define EVALUATOR HPP

#include <map>
#include <string>
#include "jsonpull/jsonpull.h"
#include "mvt.hpp"

bool evaluate(std::map<std::string, mvt_value> const &feature, std::string const &layer, json_object *filter);
json_object *parse_filter(const char *s);
json_object *read_filter(const char *fname);

#endif
back to top