<div dir="ltr">Good Evening, <div><br></div><div>GIS novice here. I have a GEOTiff that I'm trying to create tiles from which crosses the 180. It's a FAA sectional chart from the US used for aviation. If I slice off anything west of the 180, I can generate the tiles and they look good. If I don't the area of the tiles is super large and the resulting tile set is very pixelated.</div><div><br></div><div>The source file is located here in zip form (<a href="https://aeronav.faa.gov/content/aeronav/Planning/AK_WallPlan_2.zip" target="_blank">https://aeronav.faa.gov/content/aeronav/Planning/AK_WallPlan_2.zip</a>)</div><div><br></div><div>I've tried some of the solutions that specify to use the CONFIG_LONG option, but that doesn't seem to be impacting anything. The only solution I have come up with is to cut off the area which crosses the 180 which yields good results. </div><div><br></div><div>I've included below the commands I've been using.  I'm looking for any suggestions/guidance. I realize this is somewhat of a common problem. Even MapTiler had the problem, but they have sent an updated version which supposedly fixes it, but I can't afford that solution at this point so I'd like to stick to GDAL if possible. </div><div><br></div><div>Thanks,</div><div><br></div><div>-jr</div><div><br></div><div><br></div><div>--- snip --</div><div><br></div><div>gdal_translate \<br></div><div>    -expand rgb \<br>    -strict \<br>    -co TILED=YES \<br>    -co COMPRESS=LZW \<br>    -co BIGTIFF=YES \<br>    alaska.tif alaska_expanded_rgb.vrt<br><br>gdalwarp \<br>       -overwrite                  \<br>       -cutline "Alaska_Wall_Planning_Chart.shp"       \<br>       -crop_to_cutline            \<br>       -cblend 10                  \<br>       -r lanczos                  \<br>       -dstalpha                   \<br>       -co ALPHA=YES               \<br>       -co TILED=YES               \<br>       -multi                      \<br>       -wo NUM_THREADS=ALL_CPUS    \<br>       -wm 1024                    \<br>       --config GDAL_CACHEMAX 1024 \<br>       "alaska_expanded_rgb.vrt"   \<br>       "alaska_clipped.vrt"<br><br>gdalwarp \<br>        -t_srs EPSG:3857            \<br>        -te -19497422 6016546 -13438444 11497579 \<br>        -r lanczos                  \<br>        -overwrite                  \<br>        -multi                      \<br>        -wo NUM_THREADS=ALL_CPUS    \<br>        -wm 1024                    \<br>        --config GDAL_CACHEMAX 1024 \<br>        -co TILED=YES               \<br>        "alaska_clipped.vrt" \<br>        "alaska_warped.vrt"<br></div><div><br></div><div>gdal2tiles.py -z 0-8 --processes=16 -r lanczos -w leaflet alaska_warped.vrt<br></div><div><br></div><div><br></div><div><br></div></div>