From 2e993d1f612092ef5bbc02946f65362dabefa624 Mon Sep 17 00:00:00 2001 From: Dodam Ih Date: Fri, 5 Jan 2024 08:34:40 -0800 Subject: [PATCH] docs: correct dst resolution in example --- docs/source/subchunkable_apply_flow_quick_start_guide.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/source/subchunkable_apply_flow_quick_start_guide.rst b/docs/source/subchunkable_apply_flow_quick_start_guide.rst index 08f56257e..86f953539 100644 --- a/docs/source/subchunkable_apply_flow_quick_start_guide.rst +++ b/docs/source/subchunkable_apply_flow_quick_start_guide.rst @@ -671,7 +671,7 @@ With the changes, the example above becomes: bbox: #BBOX // What resolution is our destination? - dst_resolution: [4, 4, 45] + dst_resolution: [16, 16, 40] // How do we chunk/crop/blend? List of lists for subchunking. processing_chunk_sizes: [[1024, 1024, 1], [256, 256, 1]] @@ -733,7 +733,7 @@ Each level can have its own crop and blend (as well as ``blend_mode``), but ther bbox: #BBOX // What resolution is our destination? - dst_resolution: [4, 4, 45] + dst_resolution: [16, 16, 40] // How do we chunk/crop/blend? List of lists for subchunking. // Note that 1024 + 96 * 2 + 32 * 2 = 1280 is evenly divisible by 256. @@ -821,7 +821,7 @@ To modify the CUE file, we change ``mazepa.execute`` to ``mazepa.execute_on_gcp_ bbox: #BBOX // What resolution is our destination? - dst_resolution: [4, 4, 45] + dst_resolution: [16, 16, 40] // How do we chunk/crop/blend? List of lists for subchunking. // Note that 1024 + 96 * 2 + 32 * 2 = 1280 is evenly divisible by 256.