Differences between revisions 7 and 9 (spanning 2 versions)
Revision 7 as of 2016-02-23 23:55:01
Size: 1127
Editor: EricPalmer
Comment:
Revision 9 as of 2016-08-08 05:42:03
Size: 1451
Editor: EricPalmer
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
## page was renamed from Block 6A - Lat/Lon Tiling V0
## page was renamed from Block 6A - Lat/Lon Tiling
## page was renamed from Block 5A - Lat/Lon Tiling
Line 7: Line 4:
 (./) Not sure if there's working version material to use here. I just put in the basic framework.
Line 10: Line 6:
This block This block is used to tile the surface when you have specific latitude/longitude values you wish to use.
Line 13: Line 9:
 * You have invoked a Bourne-Again Shell (bash) on ormacsrv1.lpl.arizona.edu
 * You are a member of the group OREX\spc
 * You have set up a skeleton directory in the following format:
 * You have an initial shape model
 * You have run [[process_fits]] and [[make_sumfiles]] successfully
 * XXX120.SEED is copied into the scripts/ directory
Line 17: Line 13:
{{{

/SPC_Test/F3G-Nav/
                   ORex/
                            DATA/
                   base/
                            IMAGEFILES/
                            SHAPEFILES/
                   lsupport/
                   orig/
                   results/
                   test/
}}}
Line 31: Line 14:
 * '''testID''' - Name of the F3 test directory (for example, 'F3E-Limbs')
 * '''blockID''' - User-specified identifier for typescript textfile name (for example, 'Block-01-01-TestDirSetUp-Orig')
<path> is the path to the working directory
Line 35: Line 17:
{{{
# Start in the SPC working directory
cd <path>/Bennu
Line 36: Line 21:
=== Step 1. === # Create a symbolic link to the file that has the commands needed to build the input scripts
# Use make_scriptT_<GSD>.seed
ln -s scripts/make_scriptT_120.in make_scriptT.in
ls -l make_scriptT.in # show that the link points to the correct place
head make_scriptT.in # This should list the top of the file, which shows LAT/LON and the first several locations
Line 38: Line 27:
=== Step 2. === # Build the scripts
make_scriptT
ls # list the INN files that were created

# Run the scripts
nohup sh run_script.b &

# During the run, evaluate the progress
find_nofitT # This displays if there were any problems
tail -f nohup # This shows any errors
tail -f *OOT # Or just select the current output file

# When complete, save the results
find_nofitT | tee output
mkdir block6A
mv *INN *OOT output block6A

# Once evaluation of new landmarks is complete and they are deemed “good” remove temporary files
rm TESTFILES/*
rm TESTFILES1/*
}}}

Block 6A - Lat/Lon Tiling V0

Description

This block is used to tile the surface when you have specific latitude/longitude values you wish to use.

Assumptions

  • You have an initial shape model
  • You have run process_fits and make_sumfiles successfully

  • XXX120.SEED is copied into the scripts/ directory

User inputs

<path> is the path to the working directory

Procedure

# Start in the SPC working directory
cd <path>/Bennu

# Create a symbolic link to the file that has the commands needed to build the input scripts
# Use make_scriptT_<GSD>.seed  
ln -s scripts/make_scriptT_120.in make_scriptT.in
ls -l make_scriptT.in     # show that the link points to the correct place
head make_scriptT.in      # This should list the top of the file, which shows LAT/LON and the first several locations

# Build the scripts
make_scriptT
ls   # list the INN files that were created

# Run the scripts
nohup sh run_script.b &

# During the run, evaluate the progress
find_nofitT       # This displays if there were any problems
tail -f nohup     # This shows any errors 
tail -f *OOT      # Or just select the current output file

# When complete, save the results
find_nofitT | tee output
mkdir block6A
mv *INN *OOT output block6A

# Once evaluation of new landmarks is complete and they are deemed “good” remove temporary files
rm TESTFILES/*
rm TESTFILES1/*

Block 6A - Lat/Lon Tiling (last edited 2016-08-08 05:42:03 by EricPalmer)