From dee7e53dff40d1aafff6723027424137dc53f71f Mon Sep 17 00:00:00 2001 From: Erica Fischer Date: Fri, 6 Sep 2024 15:57:50 -0700 Subject: [PATCH] Forgot to update the comment --- read_json.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/read_json.cpp b/read_json.cpp index d4d3dd32..c38d3240 100644 --- a/read_json.cpp +++ b/read_json.cpp @@ -285,13 +285,9 @@ std::vector parse_layers(FILE *fp, int z, unsigned x, unsigned y, int // handle longitude wraparound // // this is supposed to be data for a single tile, - // so any jump from the left hand side of the world - // to the right side, or vice versa, is unexpected, + // so any jump from the left hand side edge of the world + // to the right edge, or vice versa, is unexpected, // so move it to the other side. - // - // (unless this is z0, in which case it is still - // reasonable to have a big, world-spanning polygon, - // and I'm not sure what to do about that.) if (fix_longitudes) { for (size_t i = 0; i < dv.size(); i++) {