#!/bin/bash
#
# Fetch daily IERS 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 finals.daily
wget --ftp-user anonymous --ftp-password rdenny@dc3.com ftps://gdc.cddis.eosdis.nasa.gov/products/iers/finals.daily
scp -P 7822 finals.daily rdenny@a2.dc3.com:/home/rdenny/public_html/ascom/earthrot/finals.daily


