Problem Summary
I'm trying to compress a drone raster image while converting it from EPSG:32628 (WGS 84 / UTM Zone 28N) to EPSG:4326 (WGS 84 Geographic) in ArcGIS Pro, but the output file size is double the original file size instead of being smaller.
My Workflow
I used the Copy Raster tool with the following settings:
- Input Raster: Freetown drone image (EPSG:32628)
- Output Coordinate System: EPSG:4326 (WGS 84)
- Output Format: TIFF (.tif)
- Pixel Type: 8-bit unsigned
- NoData Value: 0
- Compression Type: JPEG
- Compression Quality: 75
- Build Pyramids: Checked
- Pyramid Compression: JPEG
- Resampling Technique: Bilinear
Expected Result
A compressed image with significantly reduced file size (50-80% reduction) in EPSG:4326.
Actual Result
The output file size is approximately 2x the original file size.
Questions
- What might be causing the file size to increase instead of decrease?
- Could the CRS conversion from UTM (meters) to Geographic (degrees) be increasing pixel count?
- Are internal pyramids adding significantly to the file size?
- Is there a better workflow to compress AND reproject simultaneously without increasing file size?
- Should I separate the reprojection and compression into two separate steps?
Environment
- Software: ArcGIS Pro
- Input Image: Drone imagery (RGB)
- Original CRS: EPSG:32628
- Target CRS: EPSG:4326
What I've Tried
- Using Copy Raster tool with JPEG compression
- Setting compression quality to 75
- Building pyramids with JPEG compression
Any advice on the proper workflow or settings to achieve both compression and CRS conversion without increasing file size would be greatly appreciated!