-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
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
[gdal_rasterize] Also accept doubles for -ts #11830
[gdal_rasterize] Also accept doubles for -ts #11830
Conversation
But warn if it has a decimal part. Fixes OSGeo#11829
Out of curiosity, what will be the output size when the input is |
The same as |
If the price of one beer is 8.2€ but you have only 8, would you ask the bartender How about "Warning: The value of the |
But warn if it has a decimal part. Fixes #11829
cherry-picked to 3.10 per bb9523f |
The backport to
stderr
stdout
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-release/3.10 release/3.10
# Navigate to the new working tree
cd .worktrees/backport-release/3.10
# Create a new branch
git switch --create backport-11830-to-release/3.10
# Cherry-pick the merged commit of this pull request and resolve the conflicts
git cherry-pick 5be98e8ece4e78381865056b714b889dab0a0d46,a8257444747bce33ace816c8a21e0da04b95f5dd,687fb22c024a35d474df9596e709070409a7111a
# Push it to GitHub
git push --set-upstream origin backport-11830-to-release/3.10
# Go back to the original working tree
cd ../..
# Delete the working tree
git worktree remove .worktrees/backport-release/3.10 Then, create a pull request where the |
But warn if it has a decimal part.
Fixes #11829