Differences between revisions 1 and 11 (spanning 10 versions)
Revision 1 as of 2014-02-18 09:52:35
Size: 569
Editor: EricPalmer
Comment:
Revision 11 as of 2016-01-15 10:47:35
Size: 4954
Editor: DianeLambert
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
["Test Files"]

= Overview =
= make_scriptT =

'''Purpose:''' Generates the run script and .INN files required to tile a bigmap and generate new maplets.

=== Requires ===

 * [[make_scriptT.in]] - text file containing references to the bigmap and make_scripT.seed file, and the bigmap pixel/line locations for the centers of each new maplet.
 * [[make_scriptT.seed]] - text file containing the [[lithos]] option commands for generating each maplet.

NB: [[lithos]] requires a number of directories and files - refer to relevant guide.

=== Output ===

make_scriptT outputs:
 * run_script.b - run script for maplet creation.
 * .INN files - lithos seed file for each maplet.
run_script.b output:
 * .OOT files - standard output from lithos for each maplet.
 * [[SUMFILES]]/ - S/C and camera information are updated by [[lithos]] as image shifts are accepted. New landmarks and limb fits are added to the SUMFILE;
 * [[LMKFILES]]/ - LMKFILES for each new maplet are created and populated by [[lithos]].
 * [[SUMFILES]]/ - MAPFILES for each new maplet are created and populated by [[lithos]].
 * a number of information text and display files in the working directory are modified by [[lithos]]; please refer to the relevant guide.

== Using make_scriptR ==

=== Create Input Files ===

Example '''make_script.in''' file:

{{{
 P3T11S2H0409.DAT
 P3T11S2H0410.DAT
 P3T11S2H0411.DAT
END
}}}

NB: A space must precede each image filename.

Example '''make_scriptR.seed''' file (see [[make_scriptR.seed]] for further details):

{{{
s
20
3
y
XSTOP
1
10
3
y
XSTOP
0
y
n
n
q
}}}

== Run make_scriptR ==

make_scriptR generates a .INN file for each image (the image filename appended with the register options contained in the make_scriptR.seed file. Example '''P3T11S2H0409.INN''' file:

{{{
P3T11S2H0409
s
20
3
y
XSTOP
1
10
3
y
XSTOP
0
y
n
n
q
}}}

make_scriptR also generates the run script - '''run_script.b''':

{{{
rm -f P3T11S2H0409.OOT
/usr/local/bin/REGISTER < P3T11S2H0409.INN > P3T11S2H0409.OOT
cp TEMPFILE.pgm ./TESTFILES/P3T11S2H0409.pgm
rm -f P3T11S2H0410.OOT
/usr/local/bin/REGISTER < P3T11S2H0410.INN > P3T11S2H0410.OOT
cp TEMPFILE.pgm ./TESTFILES/P3T11S2H0410.pgm
rm -f P3T11S2H0411.OOT
/usr/local/bin/REGISTER < P3T11S2H0411.INN > P3T11S2H0411.OOT
cp TEMPFILE.pgm ./TESTFILES/P3T11S2H0411.pgm
}}}

== Batch Register Images ==

{{{
sh run_script.b
}}}

The register standard output for each image is captured in the .OOT files. The user must review the .OOT files to ascertain the success of the batch image registration process. (A ''find-nofit'' program does not currently exist for batch image registration.)







Make_script is the heart of the tiling process. It generates are large suite of scripts that is run (one for each landmark) and runs [[lithos]] on it.

=== Input - files ===
 * [[make_scriptT.in]] - The script file that defines the landmarks and the map to use

=== Input - stdin ===

 * None

=== Output ===
 * run_script.b - This is the main script you run to align images to the landmarks using [[lithos]]
 * rem_script.b - You use then to clean out the directory of all old working files before you do your next run
 * aaaa.INN - A shell script that runs [[lithos]] for that specific lat/lon
----
CategoryPrograms


= Step1 =
Set up the files for the rn

= Step2 =
Run and monitor

------

= Step1 =

== Overview ==
Line 11: Line 145:
= Input - stdin =

None

= Input - files =

make_scriptT.in
== Prep ==

Copy the reference map to XXXXXX (because Bob likes it that way)
{{{
cp MAPFILES/REFMAP.MAP MAPFILES/XXXXXX.MAP
}}}

Add map name and seed to the top of the output from [[make_tilefile]], which should be named [[make_scriptT.in]]

It should look like this:
Line 39: Line 177:
= Output = == Run ==

{{{
~/bin/make_scriptT
}}}

== Output ==
Line 45: Line 189:

------

= Step 2 =


== Run ==

Run, just run the script to make the whole thing go (in the background)

{{{
nohup sh run_script.b &
}}}

== Monitor ==
Track the progress with find_nofitT

{{{
~/bin/find_nofitT
}}}
If there are problems with the processing, you'll get a list of landmarks with issues
{{{
  just listed - no significant issue
  * very bad - must fix
  ! not too bad - should fix
}}}

make_scriptT

Purpose: Generates the run script and .INN files required to tile a bigmap and generate new maplets.

Requires

  • make_scriptT.in - text file containing references to the bigmap and make_scripT.seed file, and the bigmap pixel/line locations for the centers of each new maplet.

  • make_scriptT.seed - text file containing the lithos option commands for generating each maplet.

NB: lithos requires a number of directories and files - refer to relevant guide.

Output

make_scriptT outputs:

  • run_script.b - run script for maplet creation.
  • .INN files - lithos seed file for each maplet.

run_script.b output:

  • .OOT files - standard output from lithos for each maplet.
  • SUMFILES/ - S/C and camera information are updated by lithos as image shifts are accepted. New landmarks and limb fits are added to the SUMFILE;

  • LMKFILES/ - LMKFILES for each new maplet are created and populated by lithos.

  • SUMFILES/ - MAPFILES for each new maplet are created and populated by lithos.

  • a number of information text and display files in the working directory are modified by lithos; please refer to the relevant guide.

Using make_scriptR

Create Input Files

Example make_script.in file:

 P3T11S2H0409.DAT
 P3T11S2H0410.DAT
 P3T11S2H0411.DAT
END

NB: A space must precede each image filename.

Example make_scriptR.seed file (see make_scriptR.seed for further details):

s
20
3
y
XSTOP
1
10
3
y
XSTOP
0
y
n
n
q

Run make_scriptR

make_scriptR generates a .INN file for each image (the image filename appended with the register options contained in the make_scriptR.seed file. Example P3T11S2H0409.INN file:

P3T11S2H0409
s                   
20                  
3                   
y                   
XSTOP               
1                   
10                  
3                   
y                   
XSTOP               
0                   
y                   
n                   
n                   
q                   

make_scriptR also generates the run script - run_script.b:

rm -f P3T11S2H0409.OOT
/usr/local/bin/REGISTER < P3T11S2H0409.INN > P3T11S2H0409.OOT
cp TEMPFILE.pgm ./TESTFILES/P3T11S2H0409.pgm
rm -f P3T11S2H0410.OOT
/usr/local/bin/REGISTER < P3T11S2H0410.INN > P3T11S2H0410.OOT
cp TEMPFILE.pgm ./TESTFILES/P3T11S2H0410.pgm
rm -f P3T11S2H0411.OOT
/usr/local/bin/REGISTER < P3T11S2H0411.INN > P3T11S2H0411.OOT
cp TEMPFILE.pgm ./TESTFILES/P3T11S2H0411.pgm

Batch Register Images

sh run_script.b

The register standard output for each image is captured in the .OOT files. The user must review the .OOT files to ascertain the success of the batch image registration process. (A find-nofit program does not currently exist for batch image registration.)

Make_script is the heart of the tiling process. It generates are large suite of scripts that is run (one for each landmark) and runs lithos on it.

Input - files

  • make_scriptT.in - The script file that defines the landmarks and the map to use

Input - stdin

  • None

Output

  • run_script.b - This is the main script you run to align images to the landmarks using lithos

  • rem_script.b - You use then to clean out the directory of all old working files before you do your next run
  • aaaa.INN - A shell script that runs lithos for that specific lat/lon


CategoryPrograms

Step1

Set up the files for the rn

Step2

Run and monitor


Step1

Overview

The will use XXXXXX and XXX020.SEED to generate a suite of files to tile a bigmap.

Output will be exact (diff)

Prep

Copy the reference map to XXXXXX (because Bob likes it that way)

cp MAPFILES/REFMAP.MAP MAPFILES/XXXXXX.MAP

Add map name and seed to the top of the output from make_tilefile, which should be named make_scriptT.in

It should look like this:

XXXXXX
XXX020.SEED
      50   50
     100   50
     150   50
     200   50
     250   50
     300   50
     350   50
     400   50
     450   50
     500   50
     550   50
     600   50
...
     900  950
     950  950
END

Run

~/bin/make_scriptT

Output

  • INN files (1 to 361)
  • rem_script.b
  • run_script.b
  • dsp_list.txt


Step 2

Run

Run, just run the script to make the whole thing go (in the background)

nohup sh run_script.b &

Monitor

Track the progress with find_nofitT

~/bin/find_nofitT

If there are problems with the processing, you'll get a list of landmarks with issues

  just listed - no significant issue
  * very bad - must fix
  ! not too bad - should fix

make_scriptT (last edited 2016-07-24 09:58:33 by BMittan)