https://github.com/mapbox/tippecanoe
Raw File
Tip revision: af69c85d2399919db0872e73549d8294868754ea authored by Eric Fischer on 20 April 2018, 07:44:13 UTC
Merge pull request #561 from mapbox/exit-status
Tip revision: af69c85
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