#!/bin/bash
#
# Fetch IERS monthly data from NASA CDDIS IERS Rapid Service/Prediction Center for Earth Orientation Parameters
# Send them to the place on download.ascom-standards.org/earthrot where the ASCOM PLatform looks ffor them 
#
# Bob Denny    25-Feb-2021
#
rm tai-utc.dat
wget --ftp-user anonymous --ftp-password rdenny@dc3.com ftps://gdc.cddis.eosdis.nasa.gov/products/iers/tai-utc.dat
scp -P 7822 tai-utc.dat rdenny@a2.dc3.com:/home/rdenny/public_html/ascom/earthrot/tai-utc.dat


