use mapnik::quad_tree<T>
This commit is contained in:
parent
2f35c71606
commit
9c292595b4
2 changed files with 5 additions and 5 deletions
|
@ -24,11 +24,11 @@
|
|||
#include <vector>
|
||||
#include <string>
|
||||
#include <fstream>
|
||||
|
||||
#include <mapnik/util/fs.hpp>
|
||||
#include <mapnik/geometry_envelope.hpp>
|
||||
|
||||
#include <mapnik/quad_tree.hpp>
|
||||
#include "../../plugins/input/csv/csv_utils.hpp"
|
||||
#include "../shapeindex/quadtree.hpp"
|
||||
|
||||
#pragma GCC diagnostic push
|
||||
#pragma GCC diagnostic ignored "-Wunused-parameter"
|
||||
|
@ -347,7 +347,7 @@ int main (int argc, char** argv)
|
|||
}
|
||||
|
||||
std::clog << extent << std::endl;
|
||||
quadtree<std::pair<std::size_t, std::size_t>> tree(extent, depth, ratio);
|
||||
mapnik::quad_tree<std::pair<std::size_t, std::size_t>> tree(extent, depth, ratio);
|
||||
for (auto const& item : boxes)
|
||||
{
|
||||
tree.insert(std::get<1>(item), std::get<0>(item));
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
#include <vector>
|
||||
#include <string>
|
||||
#include <mapnik/util/fs.hpp>
|
||||
#include "quadtree.hpp"
|
||||
#include <mapnik/quad_tree.hpp>
|
||||
#include "shapefile.hpp"
|
||||
#include "shape_io.hpp"
|
||||
|
||||
|
@ -153,7 +153,7 @@ int main (int argc,char** argv)
|
|||
|
||||
int pos=50;
|
||||
shp.seek(pos*2);
|
||||
quadtree<int> tree(extent,depth,ratio);
|
||||
mapnik::quad_tree<int> tree(extent,depth,ratio);
|
||||
int count=0;
|
||||
while (true) {
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue