Differences between revisions 3 and 4
Revision 3 as of 2016-09-14 14:59:09
Size: 722
Editor: JohnWeirich
Comment:
Revision 4 as of 2016-09-14 15:02:37
Size: 825
Editor: JohnWeirich
Comment:
Deletions are marked like this. Additions are marked like this.
Line 3: Line 3:
[[Here is the list of Zmaps to use]] [[Here is the list of Zmaps to use.]] Make sure this file (MAPLIST.TXT) is in your working directory, or is a pointer to the list of Zmaps.

Zmap Tiling at 18cm

Here is the list of Zmaps to use. Make sure this file (MAPLIST.TXT) is in your working directory, or is a pointer to the list of Zmaps.

# Start in the working directory
cd <path>/F6-RFR/Bennu

#Prepare directory for running MAKE_TILES
mkdir ZINPTS

echo “0.00022       175   1.23400   5.00000” | MAKE_TILES

#This next set of lines will enable MAKE_TILES.b to be run using shell
rm -f MAKE_TILES_2.b 
while read line; do
if [ `echo $line | grep bigmap | wc -l` -ne 0 ]; then
echo $line >> MAKE_TILES_2.b
else
if [ `echo $line | grep -i showmap | wc -l` -eq 0 ]; then
echo "echo $line | /usr/local/bin/SHOWMAP" >> MAKE_TILES_2.b
fi
fi
done < MAKE_TILES.b
mv MAKE_TILES_2.b MAKE_TILES.b
y

#Run the updated MAKE_TILES.b in a shell
nohup sh MAKE_TILES.b

Procedure for Tiling at 18cm (last edited 2016-09-19 08:22:54 by JohnWeirich)