Skip to content

Commit

Permalink
The filter case was not supposed to reinterpret geometry
Browse files Browse the repository at this point in the history
  • Loading branch information
e-n-f committed Sep 6, 2024
1 parent dee7e53 commit 8361df4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ std::vector<mvt_layer> parse_layers(int fd, int z, unsigned x, unsigned y, std::
exit(EXIT_OPEN);
}

std::vector<mvt_layer> out = parse_layers(f, z, x, y, extent, true);
std::vector<mvt_layer> out = parse_layers(f, z, x, y, extent, false);

if (fclose(f) != 0) {
perror("fclose postfilter output");
Expand Down

0 comments on commit 8361df4

Please sign in to comment.