https://github.com/mapbox/tippecanoe
Raw File
Tip revision: 506526ddfaceb602ee5a431cd69bbe231e430221 authored by Eric Fischer on 26 November 2018, 18:57:30 UTC
Merge pull request #657 from mapbox/drop-features-earlier
Tip revision: 506526d
geobuf.hpp
#ifndef GEOBUF_HPP
#define GEOBUF_HPP

#include <stdio.h>
#include <set>
#include <map>
#include <string>
#include "mbtiles.hpp"
#include "serial.hpp"

void parse_geobuf(std::vector<struct serialization_state> *sst, const char *s, size_t len, int layer, std::string layername);

#endif
back to top