home *** CD-ROM | disk | FTP | other *** search
- Newsgroups: sci.space.shuttle
- Path: sparky!uunet!mnemosyne.cs.du.edu!nyx!mperlman
- From: mperlman@nyx.cs.du.edu (Marshal "Airborne" Perlman)
- Subject: Re: Weather Satellite pictures
- Message-ID: <1992Aug28.174001.11627@mnemosyne.cs.du.edu>
- Sender: usenet@mnemosyne.cs.du.edu (netnews admin account)
- Organization: University of Denver, Dept. of Math & Comp. Sci.
- References: <1992Aug26.165238.7418@aio.jsc.nasa.gov> <1992Aug27.134449.24628@Princeton.EDU>
- Date: Fri, 28 Aug 92 17:40:01 GMT
- Lines: 58
-
- awtron@strawber.princeton.edu (Andrew Tron) writes:
-
- >In article <1992Aug26.165238.7418@aio.jsc.nasa.gov> tes@nomad.uucp (Thomas E. Smith [LORAL]) writes:
- >>I've heard of an ftp site about a year ago that keeps satellite pictures from
- >>the last 24 hours in gif format. Does any one know where this site is?
- >>
- >The site is vmd.cso.uiuc.edu. Once you ftp to this site, cd to directory
- >"wx" and set the mode to "binary". The latest weather satellite gifs in
- >high resolution are stored in the files "cvis.gif" and "cir.gif" (visual
- >band and infrared band images, respectively. Lower resolution images
- >from the recent (i.e. 24 hr or so) past are stored in the files
- >"cvMMDDZZ.gif" and "ciMMDDZZ.gif" where MM is the month, DD is the date
- >and ZZ is the hour in UTC. Furthermore, composite surface analysis and
- >radar images are stored in the files "saMMDDZZ.gif".
-
-
- try this:
-
-
- #! /bin/sh
-
- host=vmd.cso.uiuc.edu
- dir=wx
- tmp=/tmp/sa$$
- trap "rm -f $tmp" 1 2 3 15
-
- ftp -niv $host >$tmp <<!
- user anonymous
- cd $dir
- dir SA*.GIF
- quit
- !
-
- file=`awk '$2=="GIF" {f=$1} END {print f".GIF"}' $tmp`
- lfile=`echo $file | tr A-Z a-z`
-
- if [ -f $lfile ] ; then
- echo $lfile: already exists
- exit 1
- fi
-
- ftp -ni $host <<!
- user anonymous
- cd $dir
- binary
- get $file $lfile
- quit
- !
-
- echo $lfile: copied
-
- rm $tmp
- exit
- --
- Generic Signature:
- Marshal Perlman - Huntington Beach - California - USA - Earth - Milky Way
- yaW ykliM - htraE - ASU - ainrofilaC - hcaeB notgnitnuH - namlreP lahsraM
- :erutangiS cireneG
-