Creating a .netrc file

Creating a .netrc file#

The default location for this file is on the home directory so that you are the only one who can use it. This is:

  • LinuxOS / MacOS : ~/.netrc

  • Windows OS: C:\Users\<User-Name>/_netrc.

Note

On the rest of this notebook, we will assume you have a LinuxOS / MacOS.

Steps to set up your .netrc file#

  1. Create it in the default location

touch ~/.netrc
  1. Add authentication credentials (e.g. Earth Data Login), with either one of the following formats:

machine urs.earthdata.nasa.gov
login <YourEDLUserName>
password <YourEDLPassword>

or

machine urs.earthdata.nasa.gov login <YourEDLUserName> password <YourEDLUserName>

Note

Your .netrc can hold authentication credentials outside the scope of NASA. For example, if you have an AVISO Altimetry account and you want to access TDS data, you can add another entry to your .netrc file such as: machine tds.aviso.altimetry.fr login <YourAvisoUsername> password <YourAvisoPassword>

  1. Grant the permissions to your .netrc file:

chmod 600 ~/.netrc
  1. [Optional] Test that it is usable with a command line tool. For example, with curl

curl -L -n <OPeNDAP EarthData URL> 

where the -L implies follow redirects, and -n tels curl to look for the netrc file in the default location.