123456789
Explore raster metadata with gdalinfo.Verify the accuracy of the data in QGIS with NGS ground control points.Create a Mosaic with gdalbuildvrt (force NAD83 2011 SP South).Create the COG with gdal_translate.Examine the output in QGIS.Create another VRT in WebMercator.Generate Raster Tiles with gdal2tiles, gdal_translate, and QGIS.Serve the raster tiles with wmts-server.View the mbtiles file on mobile with SW Maps.
gdalinfo --version > GDAL 3.3.1, released 2021/06/28
gdalinfo OSIP\BS921630.tif > Lots of Metadata
gdalbuildvrt -b 1 -b 2 -b 3 -addalpha mosaic.vrt OSIP/*.tif
gdal_translate mosaic.vrt cog.tif ^ -a_srs EPSG:6551 ^ -of COG ^ -co RESAMPLING=CUBIC -co COMPRESS=JPEG -co BIGTIFF=YES -co NUM_THREADS=ALL_CPUS
+x=-0.991 +y=1.9072 +z=0.5129 +rx=-0.0257899075194932 +ry=-0.0096500989602704 +rz=-0.0116599432323421
0.9956,1.9013,0.5215,0.025915,0.009246,0.011599,-0.00062
+proj=lcc +lat_0=38 +lon_0=-82.5 ^ +lat_1=40.0333333333333 +lat_2=38.73333333333 ^ +x_0=600000 +y_0=0 +ellps=GRS80 ^ +towgs84=-0.9956,1.9013,0.5215,0.025915,^ 0.009246,0.011599,-0.00062 ^ +units=us-ft +no_defs
gdalwarp mosaic.vrt web.vrt ^ -t_srs EPSG:3857 ^ -s_srs "+proj=lcc +lat_0=38 +lon_0=-82.5 +lat_1=40.0333333333333 +lat_2=38.7333333333333 +x_0=600000 +y_0=0 +ellps=GRS80 +towgs84=-0.9956,1.9013,0.5215,0.025915,0.009246,0.011599,-0.00062 +units=us-ft +no_defs" ^ -dstalpha ^ -et 0 ^ -r lanczos ^ -of VRT ^ -overwrite
gdal_translate -of MBTILES ^ --config GDAL_NUM_THREADS ALL_CPUS ^ -co ZOOM_LEVEL_STRATEGY=LOWER ^ -co RESAMPLING=CUBIC ^ web.vrt tiles.mbtiles
gdaladdo tiles.mbtiles -r average # nearest,average,bilinear,cubic,cubicspline,lanczos... # average is marginally faster
python.exe gdal2tiles.py -xyz -v source.tif outputFolder