The reclass rules are read from standard input (i.e., from the keyboard, redirected from a file, or piped through another program).
v.reclass [-d] input=name output=name type=area, line, or site [title=name]
After the user types in the above information on the command line, the program will (silently) prompt the user for reclass rules to be applied to the input map layer categories. The form of these rules is described in further detail in the sections on non-interactive program use reclass rules and examples, below.
Alternately, the user can simply type v.reclass on the command line, without program arguments. In this case, the user will be prompted for all needed inputs. Before using v.reclass one must know the following:
1 The new categories desired; and, which old categories fit into which new categories.
2 The names of the new categories.
ENTER NEW CATEGORY NUMBERS FOR THESE CATEGORIES OLD CATEGORY NAME OLD NEW NUM NUM no data 0 0__ Hard Surface, 2 lanes 1 0__ Loose Surface, 1 lane 2 0__ Improved Dirt 3 0__ Unimproved Dirt Trail 4 0__ Railroad, single track 5 0__ AFTER COMPLETING ALL ANSWERS, HIT <ESC> TO CONTINUE (OR <Ctrl-C> TO CANCEL)In the following screen the new category values have been entered beside the appropriate old category names. Cells assigned category values 2, 3, and 4 in the old vector map layer are now assigned the new category value 2 in the reclassed map; cell data formerly assigned to category value 5 in the old vector map map are now assigned the new category value 3 in the reclassed map.
ENTER NEW CATEGORY NUMBERS FOR THESE CATEGORIES OLD CATEGORY NAME OLD NEW NUM NUM no data 0 0__ Hard Surface, 2 lanes 1 1__ Loose Surface, 1 lane 2 2__ Improved Dirt 3 2__ Unimproved Dirt Trail 4 2__ Railroad, single track 5 3__ AFTER COMPLETING ALL ANSWERS, HIT <ESC> TO CONTINUE (OR <Ctrl-C> TO CANCEL)Hitting the escape key <ESC> will bring up the following screen, which prompts the user to enter a new title and category label for the newly reclassed categories.
ENTER NEW CATEGORY NAMES FOR THESE CATEGORIES TITLE: Roads Reclassified CAT NEW CATEGORY NAME NUM 0 no data 1 Paved Roads 2 Unpaved Roads 3 Railroad, single track AFTER COMPLETING ALL ANSWERS, HIT <ESC> TO CONTINUE (OR <Ctrl-C> TO CANCEL)Based upon the information supplied by the user in the above sample screens, the new output map and supporting category files are created.
Once the user has specified an input vector map layer, output map layer name, type of input map layer, and (optionally) output map layer title by typing:
Each line of input must have the following format:
where the input lines specify the category values in the input vector map layer to be reclassified to the new output_category category value. Specification of a label to be associated with the new output map layer category is optional. If specified, it is recorded as the category label for the new category value. The equal sign = is required. The input_category(ies) may consist of single category values or a range of such values in the format "low thru high." The word "thru" must be present.
A line containing only the word end terminates the input.
1 This example reclassifies categories 1, 3 and 5 in the input vector map layer to category 1 with category label "poor quality" in the output map layer, and reclassifies input vector map layer categories 2, 4, and 6 to category 2 with the label "good quality" in the output map layer.
1 3 5 = 1 poor quality 2 4 6 = 2 good quality2 This example reclassifies input vector map layer categories 1 thru 10 to output map layer category 1, input map layer categories 11 thru 20 to output map layer category 2, and input map layer categories 21 thru 30 to output map layer category 3, all without labels.
1 thru 10 = 1 11 thru 20 = 2 21 thru 30 = 33 Subsequent rules override previous rules. Therefore, the below example reclassifies input vector map layer categories 1 thru 19 and 51 thru 100 to category 1 in the output map layer, input vector map layer categories 20 thru 24 and 26 thru 50 to the output map layer category 2, and input vector map layer category 25 to the output category 3.
1 thru 100 = 1 poor quality 20 thru 50 = 2 medium quality 25 = 3 good quality4 The previous example could also have been entered as:
1 thru 19 51 thru 100 = 1 poor quality 20 thru 24 26 thru 50 = 2 medium quality 25 = 3 good qualityor as:
1 thru 19 = 1 poor quality 51 thru 100 = 1 20 thru 24 = 2 26 thru 50 = 2 medium quality 25 = 3 good qualityThe final example was given to show how the labels are handled. If a new category value appears in more than one rule (as is the case with new category values 1 and 2), the last label which was specified becomes the label for that category. In this case the labels are assigned exactly as in the two previous examples.
Last changed: $Date: 2002/01/25 05:45:35 $