NAME
Geo::TigerLine::Record::Z - TIGER/Line 2006 ZIP+4 Codes
SYNOPSIS
use Geo::TigerLine::Record::Z;
@records = Geo::TigerLine::Record::Z->parse_file($fh);
@records = Geo::TigerLine::Record::Z->parse_file($fh, \&callback);
$record = Geo::TigerLine::Record::Z->new(\%fields);
$record->rt();
$record->version();
$record->tlid();
$record->rtsq();
$record->zip4l();
$record->zip4r();
DESCRIPTION
This is a class representing record type Z of the TIGER/Line 2006 census geographic database. Each object is one record. It also contains methods to parse TIGER/Line record type Z files and turn them into objects.
This is intended as an intermediate format between pulling the raw data out of the simplistic TIGER/Line data files into something more sophisticated (a process you should only have to do once). As such, it's not very fast, but its careful, easy to use and performs some verifications on the data being read.
As this class is autogenerated by mk_parsers, think before you modify this file. It's OO, so consider sub-classing instead.
Accessors
These are simple get/set accessors for each field of a record generated from the TIGER/Line 2006 data dictionary. They perform some data validation.
- rt
-
$data = $record->rt(); $record->rt($data);
Record Type.
Expects alphanumeric data of no more than 1 characters. $data cannot be blank and should be left justified.
- version
-
$data = $record->version(); $record->version($data);
Version Number.
Expects numeric data of no more than 4 characters. $data cannot be blank and should be left justified.
- tlid
-
$data = $record->tlid(); $record->tlid($data);
TIGER/Line ID, Permanent 1-Cell Number.
Expects numeric data of no more than 10 characters. $data cannot be blank and should be right justified.
- rtsq
-
$data = $record->rtsq(); $record->rtsq($data);
Record Sequence Number.
Expects numeric data of no more than 3 characters. $data cannot be blank and should be right justified.
- zip4l
-
$data = $record->zip4l(); $record->zip4l($data);
+4 Postal Add-On Code, Left.
Expects numeric data of no more than 4 characters. $data can be blank and should be left justified.
- zip4r
-
$data = $record->zip4r(); $record->zip4r($data);
+4 Postal Add-On Code, Right.
Expects numeric data of no more than 4 characters. $data can be blank and should be left justified.
Data dictionary
This is the original TIGER/Line 2006 data dictionary from which this class was generated.
Record Type Z - ZIP+4 Codes
Field BV Fmt Type Beg End Len Description
RT No L A 1 1 1 Record Type
VERSION No L N 2 5 4 Version Number
TLID No R N 6 15 10 TIGER/Line ID, Permanent 1-Cell Number
RTSQ No R N 16 18 3 Record Sequence Number
ZIP4L Yes L N 19 22 4 +4 Postal Add-On Code, Left
ZIP4R Yes L N 23 26 4 +4 Postal Add-On Code, Right
AUTHOR
Michael G Schwern <schwern@pobox.com>