Size: 113
Comment:
|
← Revision 9 as of 2016-08-08 05:42:03 ⇥
Size: 1451
Comment:
|
Deletions are marked like this. | Additions are marked like this. |
Line 1: | Line 1: |
= Block 5A - Lat/Lon Tiling = | = Block 6A - Lat/Lon Tiling V0 = |
Line 4: | Line 4: |
(./) Not sure which working version needs to be used to start this one off. | == 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 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/*