summaryrefslogtreecommitdiff
path: root/benchmark/util/tilecover.benchmark.cpp
blob: cd9da548557d0cda7ce0ff67372304d22d94a50d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
#include <benchmark/benchmark.h>
#include <mbgl/util/geo.hpp>
#include <mbgl/util/geometry.hpp>
#include <mbgl/util/tile_coordinate.hpp>
#include <mbgl/util/tile_cover.hpp>
#include <mbgl/map/transform.hpp>

using namespace mbgl;

static const LatLngBounds sanFrancisco =
    LatLngBounds::hull({ 37.6609, -122.5744 }, { 37.8271, -122.3204 });

static void TileCountBounds(benchmark::State& state) {
    std::size_t length = 0;
    while (state.KeepRunning()) {
        auto count = util::tileCount(sanFrancisco, 10);
        length += count;
    }
}

static void TileCoverPitchedViewport(benchmark::State& state) {
    Transform transform;
    transform.resize({ 512, 512 });
    // slightly offset center so that tile order is better defined
    transform.jumpTo(CameraOptions().withCenter(LatLng { 0.1, -0.1 }).withPadding(EdgeInsets { 376, 0, 0, 0 })
                                    .withZoom(8.0).withBearing(5.0).withPitch(60.0));

    std::size_t length = 0;
    while (state.KeepRunning()) {
        auto tiles = util::tileCover(transform.getState(), 8);
        length += tiles.size();
    }
}

static void TileCoverBounds(benchmark::State& state) {
    std::size_t length = 0;
    while (state.KeepRunning()) {
        auto tiles = util::tileCover(sanFrancisco, 8);
        length += tiles.size();
    }
}

static const auto geomPolygon = Polygon<double>{
    {
        {-122.5143814086914,37.779127216982424},
        {-122.50811576843262,37.72721239056709},
        {-122.50313758850099,37.70820178063929},
        {-122.3938751220703,37.707454835665274},
        {-122.37567901611328,37.70663997801684},
        {-122.36297607421874,37.71343018466285},
        {-122.354736328125,37.727280276860036},
        {-122.36469268798828,37.73868429065797},
        {-122.38014221191408,37.75442980295571},
        {-122.38391876220702,37.78753873820529},
        {-122.35919952392578,37.8065289741725},
        {-122.35679626464844,37.820632846207864},
        {-122.3712158203125,37.835276322922695},
        {-122.3818588256836,37.82958198283902},
        {-122.37190246582031,37.80788523279169},
        {-122.38735198974608,37.791337175930686},
        {-122.40966796874999,37.812767557570204},
        {-122.46425628662108,37.807071480609274},
        {-122.46803283691405,37.810326435534755},
        {-122.47901916503906,37.81168262440736},
        {-122.48966217041016,37.78916666399649},
        {-122.50579833984375,37.78781006166096},
        {-122.5143814086914,37.779127216982424}
    }
};

static void TileCoverPolygon(benchmark::State& state) {
    std::size_t length = 0;

    while (state.KeepRunning()) {
        auto tiles = util::tileCover(geomPolygon, 8);
        length += tiles.size();
    }
}

static void TileCountPolygon(benchmark::State& state) {
    std::size_t length = 0;

    while (state.KeepRunning()) {
        auto tiles = util::tileCount(geomPolygon, 16);
        length += tiles;
    }
}

BENCHMARK(TileCountBounds);
BENCHMARK(TileCountPolygon);
BENCHMARK(TileCoverPitchedViewport);
BENCHMARK(TileCoverBounds);
BENCHMARK(TileCoverPolygon);