https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 3bb5a9c3810574cd2790aaa018ed41e98f85f157 authored by Eric Fischer on 28 August 2019, 22:22:25 UTC
Add a test for tar output format
Tip revision: 3bb5a9c
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