Differences between revisions 2 and 9 (spanning 7 versions)
Revision 2 as of 2019-01-13 10:55:29
Size: 2358
Editor: EricPalmer
Comment:
Revision 9 as of 2019-01-13 17:10:25
Size: 2606
Editor: JohnWeirich
Comment:
Deletions are marked like this. Additions are marked like this.
Line 19: Line 19:
  bigMapRef < lsupport/$ID   bigMapRef < lsupport/$ID.IN
Line 25: Line 25:
  map_coverage
  $ID
  0 0.00035
  echo $ID > temp.txt
  echo "0 0.00035" >> temp.txt
  map_coverage < temp.txt
  
Line 30: Line 31:
  makeOBJ $ID   /opt/local/spc/bin/makeOBJ.sh $ID
Line 69: Line 70:
Do this (get rid of LMRKLIST1.TXT only the 1st time setting up the boulders. We want to run a cumulative log of all the new maplets
     {{{
rm LMRKLIST1.TXT
     }}}
Line 73: Line 79:
murphy murphy -m
Line 83: Line 89:
rm

Block 16 - Export Boulder V2

Description

Getting ready to export and input a boulder NOT using fill

Procedure

Get bigmap ready

Run bigmap to get it, coverage, INSIDE.TXT and the script to build the bigmap

  ID=B-020A
  echo "Exporting boulder: $ID" | tee -a notes

  mkdir boulder-$ID
  bigMapRef < lsupport/$ID.IN
  cp MAPFILES/$ID.MAP boulder-$ID/

  echo $ID | showmap
  convert $ID.pgm boulder-$ID/$ID.jpg

  echo $ID > temp.txt
  echo "0 0.00035" >> temp.txt
  map_coverage < temp.txt
  
  convert coverage_m.pgm boulder-$ID/coverage-$ID.jpg

  /opt/local/spc/bin/makeOBJ.sh $ID
  mv $ID.obj boulder-$ID/

  cp lsupport/$ID.IN boulder-$ID

Export

Do if needed (setup)

  • mkdir -p NEW_FILES/LMKFILES
    mkdir -p NEW_FILES/MAPFILES

or reset from previous

  • rm NEW_FILES/LMRKLIST.TXT

echo y | cp INSIDE.TXT LMRKLIST1.TXT
/usr/local/bin/EXPORT
sh EXPORT.TXT
mv NEW_FILES.TAR boulder-$ID/$ID.tar

Import - prep

Here we might get into trouble, so back things up first. Suggest a full backup just in case

Do this (get rid of LMRKLIST1.TXT only the 1st time setting up the boulders. We want to run a cumulative log of all the new maplets

  • rm LMRKLIST1.TXT

In the production directory

pwd

murphy -m

bigMapRef < lsupport/$ID.IN

batchDelete INSIDE.TXT
lithos < tmpRun.txt | tee tmpOut.txt

rm NEW_FILES/LMRKLIST.TXT
rm NEW_FILES/LMKFILES/*.LMK
rm NEW_FILES/MAPFILES/*.MAP

Import

Do the import. After untar'ing things, look at NEW_FILES to make sure things make sense.

tar -xvf $ID.tar
wc NEW_FILES/LMRKLIST.TXT
du -ha NEW_FILES
/usr/local/bin/IMPORT
wc NEWLIST.TXT

Post-import

After you have them added to the director, you need to connect everything with a make_scriptF that touches each new file. If needed, clean out *INN, *OOT and TESTFILES*/*

echo y | cp NEWLIST.TXT make_script.in
relink.sh support/F-import.seed make_scriptF.seed
make_scriptF
sh run_script.b
find_nofit

Evaluate the new bigmap

Use bigmap to see how things worked out

bigMapRef < lsupport/$ID.IN

map_coverage
$ID
0 0.00035

echo $ID | showmap
convert $ID.pgm ~/send/$ID-1.jpg
convert SIGMAS.pgm ~/send/$ID-sig-1.jpg
tail -5 SIGMAS.TXT | tee -a notes

makeOBJ.sh $ID
echo y | mv $ID.obj ~/send/

Finish the Block

  • blockFinish 


(Compiled by EEP)

Block 16 - Export Boulder v2 (last edited 2019-01-13 21:04:18 by EricPalmer)