NAME
Geo::TigerLine::Record::6 - TIGER/Line 2006 Additional Address Range and ZIP Code Data
SYNOPSIS
use Geo::TigerLine::Record::6;
@records = Geo::TigerLine::Record::6->parse_file($fh);
@records = Geo::TigerLine::Record::6->parse_file($fh, \&callback);
$record = Geo::TigerLine::Record::6->new(\%fields);
$record->rt();
$record->version();
$record->tlid();
$record->rtsq();
$record->fraddl();
$record->toaddl();
$record->fraddr();
$record->toaddr();
$record->friaddl();
$record->toiaddl();
$record->friaddr();
$record->toiaddr();
$record->zipl();
$record->zipr();
DESCRIPTION
This is a class representing record type 6 of the TIGER/Line 2006 census geographic database. Each object is one record. It also contains methods to parse TIGER/Line record type 6 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.
- fraddl
-
$data = $record->fraddl(); $record->fraddl($data);
Start Address, Left.
Expects alphanumeric data of no more than 11 characters. $data can be blank and should be right justified.
- toaddl
-
$data = $record->toaddl(); $record->toaddl($data);
End Address, Left.
Expects alphanumeric data of no more than 11 characters. $data can be blank and should be right justified.
- fraddr
-
$data = $record->fraddr(); $record->fraddr($data);
Start Address, Right.
Expects alphanumeric data of no more than 11 characters. $data can be blank and should be right justified.
- toaddr
-
$data = $record->toaddr(); $record->toaddr($data);
End Address, Right.
Expects alphanumeric data of no more than 11 characters. $data can be blank and should be right justified.
- friaddl
-
$data = $record->friaddl(); $record->friaddl($data);
Start Imputed Address Flag, Left.
Expects alphanumeric data of no more than 1 characters. $data can be blank and should be left justified.
- toiaddl
-
$data = $record->toiaddl(); $record->toiaddl($data);
End Imputed Address Flag, Left.
Expects alphanumeric data of no more than 1 characters. $data can be blank and should be left justified.
- friaddr
-
$data = $record->friaddr(); $record->friaddr($data);
Start Imputed Address Flag, Right.
Expects alphanumeric data of no more than 1 characters. $data can be blank and should be left justified.
- toiaddr
-
$data = $record->toiaddr(); $record->toiaddr($data);
End Imputed Address Flag, Right.
Expects alphanumeric data of no more than 1 characters. $data can be blank and should be left justified.
- zipl
-
$data = $record->zipl(); $record->zipl($data);
ZIP Code, Left.
Expects numeric data of no more than 5 characters. $data can be blank and should be left justified.
- zipr
-
$data = $record->zipr(); $record->zipr($data);
ZIP Code, Right.
Expects numeric data of no more than 5 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 6 - Additional Address Range and ZIP Code Data
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
FRADDL Yes R A 19 29 11 Start Address, Left
TOADDL Yes R A 30 40 11 End Address, Left
FRADDR Yes R A 41 51 11 Start Address, Right
TOADDR Yes R A 52 62 11 End Address, Right
FRIADDL Yes L A 63 63 1 Start Imputed Address Flag, Left
TOIADDL Yes L A 64 64 1 End Imputed Address Flag, Left
FRIADDR Yes L A 65 65 1 Start Imputed Address Flag, Right
TOIADDR Yes L A 66 66 1 End Imputed Address Flag, Right
ZIPL Yes L N 67 71 5 ZIP Code, Left
ZIPR Yes L N 72 76 5 ZIP Code, Right
AUTHOR
Michael G Schwern <schwern@pobox.com>