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
Many objects are saved to files created by paste0, for example: https://github.com/SimonDedman/movegroup/blob/main/R/movegroup.R#L372-L373
paste0
Resulting in files being saved as /home/me/folderNEWFILE rather than /home/me/folder/NEWFILE.
/home/me/folderNEWFILE
/home/me/folder/NEWFILE
Could be solved by using file.path instead of paste0, as in https://github.com/SimonDedman/movegroup/blob/main/R/movegroup.R#L591
file.path
Happy to PR for you if that would help.
The text was updated successfully, but these errors were encountered:
edits pushed for movegroup.R; not for scaleraster.R alignraster.R & plotraster.R yet but will do asap. Debug in windows.
Sorry, something went wrong.
7c0d4fa
Hopefully fixed by commit, reopening until tested on windows & linux
Extra tweaks here, ended up basically duplicating Mike's effort in #21
No branches or pull requests
Many objects are saved to files created by
paste0
, for example: https://github.com/SimonDedman/movegroup/blob/main/R/movegroup.R#L372-L373Resulting in files being saved as
/home/me/folderNEWFILE
rather than/home/me/folder/NEWFILE
.Could be solved by using
file.path
instead ofpaste0
, as in https://github.com/SimonDedman/movegroup/blob/main/R/movegroup.R#L591Happy to PR for you if that would help.
The text was updated successfully, but these errors were encountered: