Differences between revisions 9 and 10
Revision 9 as of 2016-01-25 09:48:17
Size: 2661
Comment:
Revision 10 as of 2016-02-01 10:28:28
Size: 2766
Editor: BMittan
Comment:
Deletions are marked like this. Additions are marked like this.
Line 2: Line 2:
(compiled by DL)
Line 4: Line 3:
'''Purpose:''' Program to generate the pixel/line maplet-center locations required to complete the tiling of a bigmap at a user-specified resolution. == Description ===
Thi
s program generates the pixel/line maplet-center locations required to complete the tiling of a bigmap at a user-specified resolution.
Line 6: Line 6:
The make_tilefile utility analyses a coverage_m.pgm file, which is the output of [[map_coverage]], for areas that still need to be tiled. The output of this program is then put in the [[make_scriptT.in]] file. ''(Taken from [[http://sbib.psi.edu/wiki_ext/refman.pdf|SPOC v3.02A PDF]]/UTILITIES/make_tilefile.f File Reference.)'' '''make_tilefile''' analyzes a coverage_m.pgm file, which is the output of [[map_coverage]], for areas that still need to be tiled. The output of this program is then put in the [[make_scriptT.in]] file.
Line 8: Line 8:
=== Requires ===
 * coverage_m.pgm - A Portable Graymap Format image of the bigmap-tiling in the user-specified maplet resolution range, generated using [[map_coverage]].
=== Required Files ===
 * coverage_m.pgm - a Portable Graymap Format image of the bigmap-tiling in the user-specified maplet resolution range, generated using [[map_coverage]]
Line 11: Line 11:
=== Output ===
 * std-out - list of bigmap pixel/line coordinates for new maplet center locations.
=== Output Files ===
 * std-out - list of bigmap pixel/line coordinates for new maplet center locations
Line 16: Line 16:
The program requires a single user-input - Upwards? (y/n):  1. Enter either Y or N in response to 'Upwards? (y/n)'.
 . '''Upwards? - Y:''' Pixel/line coordinates for tiling starting at the Southern-most line, West-to-East and South-to-North.
 . '''Upwards? - N:''' Pixel/line coordinates for tiling starting at the Northern-most line, West-to-East and North-to-South.

Here are two samples showing each of these responses:


{{{
 Upwards? (y/n)
y
      50 200
     100 200
     150 200
     200 200
      50 150
     100 150
# 150 150
     200 150
      50 100
     100 100
     150 100
     200 100
      50 50
# 100 50
# 150 50
     200 50
END
}}}
Line 40: Line 67:
{{{
 Upwards? (y/n)
y
      50 200
     100 200
     150 200
     200 200
      50 150
     100 150
# 150 150
     200 150
      50 100
     100 100
     150 100
     200 100
      50 50
# 100 50
# 150 50
     200 50
END
}}}
Line 62: Line 68:
The '''output columns''' are the pixel and line coordinates respectively for bare points in the bigmap. Locations which already contain a maplet in the required resolution-range are marked with '''#''' and will be ignored by [[make_scriptT]] (refer to relevant page for further details). The output columns are the pixel and line coordinates respectively for bare points in the bigmap. Locations that already contain a maplet in the required resolution-range are marked with '''#''' and will be ignored by [[make_scriptT]]. See [[make_scriptT]] for additional details.
Line 64: Line 70:
'''Upwards? - Y:''' Pixel/line coordinates for tiling starting at the Southern-most line, West-to-East and South-to-North.
Line 66: Line 71:
'''Upwards? - N:''' Pixel/line coordinates for tiling starting at the Northern-most line, West-to-East and North-to-South.

The user may
enter input and capture output in a single command line as follows:
 1.#2 You can enter input and capture output using a single command line as follows:
Line 74: Line 77:
However, the first line of output will need to be discarded using a text editor before appending to the [[make_scriptT.in]] file (refer to relevant page for further details). However, the first line of output will need to be discarded using a text editor before appending to the [[make_scriptT.in]]. See [[make_scriptT.in]] for additional details.
Line 76: Line 79:
The user should note that make_tilefile is set to make the pixel and line coordinates in intervals of 50 because maplets have a 99 by 99 pixel dimension, meaning the center will always be at the (50,50) coordinate with respect to a maplet. Thus, when a maplet is made at the same resolution as the bigmap, the maplet center coordinates will be multiples of 50.  ''' (!) make_tilefile''' '''''is set to make the pixel and line coordinates in intervals of 50 because maplets have a 99 by 99 pixel dimension. This means that the center will always be at the (50,50) coordinate with respect to a maplet. Thus, when a maplet is made at the same resolution as the bigmap, the maplet center coordinates will be multiples of 50.'''''
---------
''(Compiled by DL)''

CategoryPrograms

Based on [[http://sbib.psi.edu/wiki_ext/refman.pdf|SPOC v3.02A PDF]]/UTILITIES/make_tilefile.f File Reference

make_tilefile

== Description === This program generates the pixel/line maplet-center locations required to complete the tiling of a bigmap at a user-specified resolution.

make_tilefile analyzes a coverage_m.pgm file, which is the output of map_coverage, for areas that still need to be tiled. The output of this program is then put in the make_scriptT.in file.

Required Files

  • coverage_m.pgm - a Portable Graymap Format image of the bigmap-tiling in the user-specified maplet resolution range, generated using map_coverage

Output Files

  • std-out - list of bigmap pixel/line coordinates for new maplet center locations

Using make_tilefile

  1. Enter either Y or N in response to 'Upwards? (y/n)'.
  2. Upwards? - Y: Pixel/line coordinates for tiling starting at the Southern-most line, West-to-East and South-to-North.

  3. Upwards? - N: Pixel/line coordinates for tiling starting at the Northern-most line, West-to-East and North-to-South.

Here are two samples showing each of these responses:

 Upwards? (y/n)
y
      50  200
     100  200
     150  200
     200  200
      50  150
     100  150
#    150  150
     200  150
      50  100
     100  100
     150  100
     200  100
      50   50
#    100   50
#    150   50
     200   50
END

 Upwards? (y/n)
n
      50   50
#    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

The output columns are the pixel and line coordinates respectively for bare points in the bigmap. Locations that already contain a maplet in the required resolution-range are marked with # and will be ignored by make_scriptT. See make_scriptT for additional details.

  1. You can enter input and capture output using a single command line as follows:

echo "N" | make_tilefile > out

However, the first line of output will need to be discarded using a text editor before appending to the make_scriptT.in. See make_scriptT.in for additional details.

  • (!) make_tilefile is set to make the pixel and line coordinates in intervals of 50 because maplets have a 99 by 99 pixel dimension. This means that the center will always be at the (50,50) coordinate with respect to a maplet. Thus, when a maplet is made at the same resolution as the bigmap, the maplet center coordinates will be multiples of 50.


(Compiled by DL)

CategoryPrograms

Based on SPOC v3.02A PDF/UTILITIES/make_tilefile.f File Reference

make_tilefile (last edited 2021-03-29 09:28:12 by EricPalmer)