swh:1:snp:ff2a11cd2e44dd19ec3814028ef2ce6605664e63
Raw File
Tip revision: b694a0e2cb817fed619f2b2a3fe96e4564ccde91 authored by Eric Fischer on 14 September 2017, 19:05:12 UTC
Bring back the diagnosis of which attributes use the most space
Tip revision: b694a0e
dirtiles.hpp
#include <string>

#ifndef DIRTILES_HPP
#define DIRTILES_HPP

std::string dir_read_tile(std::string pbfPath);

void dir_write_tile(const char *outdir, int z, int tx, int ty, std::string const &pbf);

void check_dir(const char *d, bool rm);

#endif
back to top