We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
In the following, why does r change if I modify s?
> f <- system.file("ex/elev.tif", package="terra") > r <- rast(f) > res(r) [1] 0.008333333 0.008333333 > s <- r > res(r) [1] 0.008333333 0.008333333 > extr <- ext(r) > res(r) [1] 0.008333333 0.008333333 > ext(s) <- extr*0.0001 > res(r) [1] 8.333333e-07 8.333333e-07
terra_1.8-16
The text was updated successfully, but these errors were encountered:
Thanks, this was already fixed in the development version.
Sorry, something went wrong.
I confirm it works ok in terra_1.8-25 Do you have an estimate of how long this error has been occurring? I had not noticed it.
It looks like it has been like that from the beginning.
No branches or pull requests
In the following, why does r change if I modify s?
terra_1.8-16
The text was updated successfully, but these errors were encountered: