The CLASS website is available for searching and ordering data.
The U.S. government is closed. This site will not be updated; however, NOAA websites and social media channels necessary to protect lives and property will be maintained. To learn more, visit commerce.gov.
For the latest forecasts and critical weather information, visit weather.gov.
WinSCP is an FTP client available from:
https://winscp.net/eng/download.php
After launching the initial connection window will appear:
Change/set the following options:
The curl program is a command line tool that is available for Linux.
It can be installed and used on Windows system, but that is out of scope for this tutorial.
In general, the curl package is available in the Linux repository.
Additional information and documentation can be found at:
http://curl.haxx.se/
The curl program is run from the command line. The general syntax to connect to CLASS include:
To put a file:
curl -v -k ftp://$USER_NAME:$PASSWORD@$URL:990/$FULL_REMOTE_PATH --tlsv1 --ftp-ssl-control --ftp-skip-pasv-ip -T $FULL_LOCAL_PATH
To list the contents:
curl -v -k ftp://$USER_NAME:$PASSWORD@$URL:990/$FULL_REMOTE_PATH --tlsv1 --ftp-ssl-control --ftp-skip-pasv-ip -l
To get a file:
curl -v -k ftp://$USER_NAME:$PASSWORD@$URL:990/$FULL_REMOTE_PATH --tlsv1 --ftp-ssl-control --ftp-skip-pasv-ip -o $FULL_LOCAL_PATH
To use these examples, replace the following: