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
Hi,
In order to avoid showing my UDG user/password openly in notebooks/scripts I usually do:
do.call(loginUDG, as.list(readLines("udg_login.txt")))
which is quite dirty for the purpose. I think this could be easily implemented internally in loginUDG(), either as e.g.:
loginUDG(from.file = "udg_login.txt")
Or just let the function try to find a default file (e.g. ~/.udgrc) when called without arguments loginUDG()
loginUDG()
The text was updated successfully, but these errors were encountered:
we need to create a .rc simmilar to the netcdf-c support on authentication: https://docs.unidata.ucar.edu/netcdf-c/current/tutorial_8dox.html
more over the section on third-party auth, based also on .netrc "standard"
Sorry, something went wrong.
No branches or pull requests
Hi,
In order to avoid showing my UDG user/password openly in notebooks/scripts I usually do:
which is quite dirty for the purpose. I think this could be easily implemented internally in loginUDG(), either as e.g.:
Or just let the function try to find a default file (e.g. ~/.udgrc) when called without arguments
loginUDG()
The text was updated successfully, but these errors were encountered: