feat: Add reprojection of orthophoto to EPSG:3857 before uploading to S3 #333
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.
PR Description:
Problem Statement:
When processing imagery with PyODM (ODM), the resulting orthophoto TIFF file is output with EPSG:32645 by default. However, for web visualization using Maplibre-cog-protocol, EPSG:3857 projection is required.
Solution:
This update adds functionality to automatically reproject the orthophoto from the default EPSG:32645 to EPSG:3857 before uploading to S3. This allows for seamless integration with web-based map visualizations, which rely on EPSG:3857 for proper rendering.
Community Discussion:
This functionality is aligned with the ongoing discussions about passing different output projections to ODM. For more context, please refer to the following community link:
Passing different output projections to ODM (e.g., --proj flag)