# This file is used for the states shapefile from National Atlas # Jason kg4wsv # AREA float (12,3) # PERIMETER float (12,3) # STATESP020 integer (11,0) # STATE string (20,0) # STATE_FIPS string (2,0) # BEGIN is called once per dbf file which contains multiple records. BEGIN { # dbfinfo is the "signature" of the dbf file listing the column names in order. # dbfinfo should match the dbf file that we say this dbfawk file goes with. dbfinfo="AREA:PERIMETER:STATESP020:STATE:STATE_FIPS"; # dbffields is which of the above fields we actually want to look at. dbffields="AREA:PERIMETER:STATESP020:STATE:STATE_FIPS"} # BEGIN_RECORD is called once per dbf record which contains multiple fields. # Use this rule to re-initialize variables between records. #15 very light gray #23 light gray #25 orange-yellow #40 dark gray #48 medium gray BEGIN_RECORD {key=""; lanes=4; color=23; fill_color=26; label_color=9; name=""; filled=0; pattern=1; display_level=262144; label_level=0; symbol=""; font_size=2} #END {}