#!/bin/tcsh

#NOTE: This script doesn't do anything, but creating a file that
#ends in '.jpg' - The idea is, that you can replace whatever is happening 
#in here by actual processing techniques that work on one station datafile
#at a time. 

set file = `basename $1 .dat`

echo "creating ./data/${file}.jpg"
touch "./data/${file}.jpg"
