https://github.com/mapbox/tippecanoe
Raw File
Tip revision: b2277d76e58c14d7a672c6a8eef824d97c5a77fa authored by Eric Fischer on 17 February 2020, 22:56:11 UTC
Eliminate the separate metadata file
Tip revision: b2277d7
evaluator.hpp
#ifndef EVALUATOR_HPP
#define EVALUATOR HPP

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

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

#endif
back to top