-
Notifications
You must be signed in to change notification settings - Fork 803
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CRS::promoteTo3D(): propagate the extent from the 2D CRS (fixes #2587) #2589
Conversation
…#2587) This will help getting more consistent results between the 2D and 3D cases, as identified in OSGeo#2587 (comment)
@kbevers The backport bot doesn't seem to work |
Backported manually per fda6819 |
@rouault yeah, I've noticed. Trying to figure out why. From https://github.com/OSGeo/PROJ/runs/2149909330?check_suite_focus=true we get this
as opposed to this from QGIS (https://github.com/qgis/QGIS/pull/42320/checks?check_run_id=2144090138)
So there's some problems with setting the correct access levels on the |
The backport to
To backport manually, run these commands in your terminal: # Fetch latest updates from GitHub
git fetch
# Create a new working tree
git worktree add .worktrees/backport-8.0 8.0
# Navigate to the new working tree
cd .worktrees/backport-8.0
# Create a new branch
git switch --create backport-2589-to-8.0
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick --mainline 1 ac9c36e1b42475700c80410dd6d59f8c8f9db447
# Push it to GitHub
git push --set-upstream origin backport-2589-to-8.0
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-8.0 Then, create a pull request where the |
After a few modifications in the backport setup it seems to get the permissions right now. See https://github.com/OSGeo/PROJ/runs/2150343487?check_suite_focus=true. It fails here for obvious reasons but I hope it works on future pull requests. In the log it is stated that the action is stil limited to single commit PRs:
However m-kuhn/backport@412793d seems to actually fix that. Time will tell what works, I guess. |
could you explain what you did exactly ? Could be of interest for GDAL as well |
Yes. I simply copied the backport.yml file from QGIS. At first I thought it was only necessary to change the repository of the action and remove unused tokens. Did that in 5edc28e. That didn't work so tried adding |
This will help getting more consistent results between the 2D and 3D
cases, as identified in
#2587 (comment)