[DOCS] fix raster tiling blog cover so tiles match source pixel size - #3101
Merged
jiayuasu merged 2 commits intoJul 13, 2026
Merged
Conversation
The cover drew the original raster as an 18x18 grid while the tiled output used a 32x32 grid, so the source appeared coarser than its own tiles. Redraw both sides from a single 32x32 field at the same 7.5px pixel pitch: the left shows the whole scene and the right shows the identical scene split into 8x8 tiles of 4x4 pixels, so the tiles reassemble into the source and differ only by the inter-tile gaps.
Redraw the left raster as the exact 32x32 image the existing tiles already form, rather than a freshly generated pattern, so the original artwork is preserved and the left is a faithful reassembly of the tiles at the same 7.5px pixel pitch. Only the left raster and its labels change; the tiles and the rest of the figure stay as they were.
jiayuasu
added a commit
that referenced
this pull request
Jul 13, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Did you read the Contributor Guide?
Is this PR related to a ticket?
[DOCS] my subjectWhat changes were proposed in this PR?
The cover illustration for the "Open Huge GeoTIFFs Without the 2 GB Wall" raster tiling blog post drew the original raster (left, the large source file) as an 18×18 grid, while the tiled output (right) was a 32×32 image. This made the source appear coarser than its own tiles, even though tiling does not change resolution.
This PR redraws only the left raster as the exact 32×32 image the existing tiles already form, at the same 7.5px pixel pitch. The left is now a faithful reassembly of the tiles — same picture, same pixel size — differing only by the gaps between tiles. The 64 tiles, background, 2 GB wall, arrow, titles, and trailing tiles are unchanged.
Only
docs/blog/posts/raster-tiling-reader-cover.svgis modified (the left raster group and its three labels).How was this patch tested?
Rendered the updated SVG to PNG and verified visually that the left raster and the right tiles are the same image at the same pixel size, and confirmed the file remains well-formed XML. No code paths are affected.
Did this PR include necessary documentation updates?