Skip to content

Commit

Permalink
Clip the clip regions to the tile bounds to reduce their complexity
Browse files Browse the repository at this point in the history
  • Loading branch information
e-n-f committed Nov 27, 2024
1 parent 641f97f commit 75511a7
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 3 deletions.
5 changes: 2 additions & 3 deletions clip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -387,8 +387,7 @@ drawvec clean_or_clip_poly(drawvec &geom, int z, int buffer, bool clip, bool try
return ret;
}

drawvec clip_poly_poly(drawvec &geom, drawvec const &bounds) {
geom = remove_noop(geom, VT_POLYGON, 0);
drawvec clip_poly_poly(drawvec const &geom, drawvec const &bounds) {
mapbox::geometry::multi_polygon<long long> result;

{
Expand Down Expand Up @@ -450,7 +449,7 @@ drawvec clip_poly_poly(drawvec &geom, drawvec const &bounds) {
return ret;
}

drawvec clip_point_poly(drawvec &geom, drawvec const &bounds) {
drawvec clip_point_poly(drawvec const &geom, drawvec const &bounds) {
drawvec out;
for (auto const &p : geom) {
if (pnpoly_mp(bounds, p.x, p.y)) {
Expand Down
4 changes: 4 additions & 0 deletions geometry.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ int pnpoly(const drawvec &vert, size_t start, size_t nvert, long long testx, lon
bool pnpoly_mp(drawvec const &geom, long long x, long long y);
double distance_from_line(long long point_x, long long point_y, long long segA_x, long long segA_y, long long segB_x, long long segB_y);

drawvec clip_poly_poly(drawvec const &geom, drawvec const &bounds);
drawvec clip_lines_poly(drawvec const &geom, drawvec const &bounds);
drawvec clip_point_poly(drawvec const &geom, drawvec const &bounds);

struct input_tile {
std::string tile;
int z;
Expand Down
28 changes: 28 additions & 0 deletions overzoom.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -259,6 +259,34 @@ int main(int argc, char **argv) {
fclose(f);
}

// clip the clip polygons, if any, to the tile bounds,
// to reduce their complexity

if (clipbboxes.size() > 0) {
long long wx1 = (nx - buffer / 256.0) * (1LL << (32 - nz));
long long wy1 = (ny - buffer / 256.0) * (1LL << (32 - nz));
long long wx2 = (nx + 1 + buffer / 256.0) * (1LL << (32 - nz));
long long wy2 = (ny + 1 + buffer / 256.0) * (1LL << (32 - nz));

drawvec tile_bounds;
tile_bounds.emplace_back(VT_MOVETO, wx1, wy1);
tile_bounds.emplace_back(VT_LINETO, wx2, wy1);
tile_bounds.emplace_back(VT_LINETO, wx2, wy2);
tile_bounds.emplace_back(VT_LINETO, wx1, wy2);
tile_bounds.emplace_back(VT_LINETO, wx1, wy1);

for (auto &c : clipbboxes) {
c.minx = std::max(c.minx, wx1);
c.miny = std::max(c.miny, wy1);
c.maxx = std::min(c.maxx, wx2);
c.maxy = std::min(c.maxy, wy2);

if (c.dv.size() > 0) {
c.dv = clip_poly_poly(c.dv, tile_bounds);
}
}
}

json_object *json_filter = NULL;
if (filter.size() > 0) {
json_filter = parse_filter(filter.c_str());
Expand Down

0 comments on commit 75511a7

Please sign in to comment.