Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
            <CellRefinementLevel></CellRefinementLevel>
        </params>
    </task>
    
  2. or download this
    <task>
        <params>
            <CellRefinementLevel>7</CellRefinementLevel>
        </params>
    </task>
    
  3. or download this
    $PARAMS{'CellRefinementLevel'}=7;
    $PARAMS{'GridCellSizeInXDirection'}=100;
    $PARAMS{'GridCellSizeInYDirection'}=100;
    
  4. or download this
    CellRefinementLevel=7
    GridCellSizeInXDirection=100
    GridCellSizeInYDirection=100
    
  5. or download this
    @ARGV = 'noname.txt'; # omit if config file passed on the command line
    my %PARAMS = map {chomp; split '='} grep {length} <>;