Differences between revisions 3 and 18 (spanning 15 versions)
Revision 3 as of 2011-11-29 18:12:06
Size: 1022
Editor: EricPalmer
Comment:
Revision 18 as of 2019-05-08 15:02:08
Size: 2666
Editor: EricPalmer
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
= view_mapsT.in =
Support file.
= make_scriptT.in =
Line 5: Line 4:
Generated by hand. == Description ==
Line 7: Line 6:
Used by ["make_script.e"]. This support file is used by [[make_scriptT]], the script-maker for tiling a bigmap or shape.
Line 9: Line 8:
== General Info ==
 * # is a comment, locations will be skipped
 * & is a command. This command will be run. Normally, you will use this on the first line to setup that map that you will be working with
== Basic Tiling ==
Basic tiling involves tiling a bigmap which is located on the shape. For more details, refer to [[Basic_tiling]].

Here is an annotated sample of a '''make_scriptT.in''' file used for basic tiling:

{{{
XXXXXX <- For maplet locations, reference to temporary file containing the tiling bigmap
scripts/t11-10.seed <- Reference to the make_scriptT.seed file
      50 50 <- bigmap pixel/line location for placement of the center of each new maplet
     100 50
     150 50
     200 50
      50 100
     100 100
     150 100
     200 100
      50 150
     100 150
     150 150
     200 150
      50 200
     100 200
     150 200
     200 200
END
}}}

'''XXXXXX''' - You must save the tiling bigmap to a temporary file for tiling using a command line like this:
{{{
cp MAPFILES/BGMAP1.MAP MAPFILES/XXXXXX.MAP
}}}
 You then include the temporary filename as the first line of the file.

'''make_scriptT seed file''' - File containing the [[lithos]] commands for generating each new maplet. Refer to [[make_scriptT.seed]] for more information.

'''bigmap pixel/line locations''' - These are generated using the programs [[map_coverage]] and [[make_tilefile]]. Refer to those entries for details.

== Lat/Long Tiling ==

Lat/Long tiling involves directly tiling a shape model. For more details, refer to [[LatLon_tiling]].

Here is an annotated sample '''make_scriptT.in''' file used for lat/long tiling:
{{{
LATLON <- For maplet locations, reference to shape model
SCRIPTS/XXX150.SEED <- Reference to the make_scriptT.seed file
 00, 000 <- shape model lat/wlong for placement of the center of each new maplet
 00, 012
 00, 024
 00, 036
 00, 048
 00, 060
 00, 072
 00, 084
 ....
-84, 315
 90, 000
-90, 000
END
}}}

'''make_scriptT seed file''' - File containing the [[lithos]] commands for generating each new maplet. Refer to [[make_scriptT.seed]] for more information.
Line 14: Line 71:
== Parameters ==
 1. Copy the mapfile that you will be working with. Give it a generic name
 2. Filename of the mapfile you will be using
 3. Script file to use (or Seed). This has all the commands that will be used to build each of the aaaa.INN file that goes into ["lithos.e"]
 4. Location to make a new landmark. In this case it is in meters - and here we are setting a landmark in a 50 meter grid. If there is the line Lat/Lon (?) this the numbers would be lat and lon.
 5. Repeat
 6. End
== Image Tiling ==
Line 22: Line 73:
== Example ==
{{{
& cp MAPFILES/ZN0056.MAP MAPFILES/XXXXXX.MAP
XXXXXX
XXX050.SEED
0050, 0950
0100, 0950
...
0850, 0050
0900, 0050
0950, 0050
END
 * The 1st line must be "IMAGES".
 * The 2nd line is the script name
 * Following lines are image name, sample and pixel
   * Image name must be char 1-12. Sample and pixel are after that with any fortran format (space or comma delimited)
 * Ends with the statement "END"
 * # symbol will cause that entry to be skipped
Line 36: Line 81:
}}}
-----------

''(Compiled by DL)''

CategoryFiles CategorySupportFiles

make_scriptT.in

Description

This support file is used by make_scriptT, the script-maker for tiling a bigmap or shape.

Basic Tiling

Basic tiling involves tiling a bigmap which is located on the shape. For more details, refer to Basic_tiling.

Here is an annotated sample of a make_scriptT.in file used for basic tiling:

XXXXXX                <- For maplet locations, reference to temporary file containing the tiling bigmap
scripts/t11-10.seed   <- Reference to the make_scriptT.seed file
      50   50         <- bigmap pixel/line location for placement of the center of each new maplet
     100   50
     150   50
     200   50
      50  100
     100  100
     150  100
     200  100
      50  150
     100  150
     150  150
     200  150
      50  200
     100  200
     150  200
     200  200
END

XXXXXX - You must save the tiling bigmap to a temporary file for tiling using a command line like this:

cp MAPFILES/BGMAP1.MAP MAPFILES/XXXXXX.MAP
  • You then include the temporary filename as the first line of the file.

make_scriptT seed file - File containing the lithos commands for generating each new maplet. Refer to make_scriptT.seed for more information.

bigmap pixel/line locations - These are generated using the programs map_coverage and make_tilefile. Refer to those entries for details.

Lat/Long Tiling

Lat/Long tiling involves directly tiling a shape model. For more details, refer to LatLon_tiling.

Here is an annotated sample make_scriptT.in file used for lat/long tiling:

LATLON                <- For maplet locations, reference to shape model
SCRIPTS/XXX150.SEED   <- Reference to the make_scriptT.seed file
 00,    000           <- shape model lat/wlong for placement of the center of each new maplet
 00,    012
 00,    024
 00,    036
 00,    048
 00,    060
 00,    072
 00,    084
 ....
-84,    315
 90,    000
-90,    000
END

make_scriptT seed file - File containing the lithos commands for generating each new maplet. Refer to make_scriptT.seed for more information.

Image Tiling

  • The 1st line must be "IMAGES".
  • The 2nd line is the script name
  • Following lines are image name, sample and pixel
    • Image name must be char 1-12. Sample and pixel are after that with any fortran format (space or comma delimited)
  • Ends with the statement "END"
  • # symbol will cause that entry to be skipped


(Compiled by DL)

CategoryFiles CategorySupportFiles

make_scriptT.in (last edited 2023-03-17 09:41:45 by DalyTerik)