* ZIP Code Lookup 2003-2015 Cumulative.

VARIABLE LABELS
zip5 "Five-digit ZIP Code"
FIPS "2-digit State + 3-digit County FIPS code (Federal Information Processing Standard). See also U.S. Census Bureau State & County QuickFacts."
MSA "Metropolitan Statistical Area (NCCS file) (list)"
STATECODE "Two-digit FIPS state/territory code"
COUNTY "Three-digit FIPS county code"
Y "Latitude (degrees) of the center (centroid) of ZIP Code"
X "Longitude (degrees) of the center (centroid) of ZIP Code"
ZIP_CLASS "ZIP Classification:P=PO Box, U=Unique (large orgs/businesses/bldgs), M=Military (APOs/FPOs), Blank=Standard/non-unique"
CITY "Name of city/organization"
STATE " Two-letter state abbreviation"
STATENAME "Full name of state/territory"
COUNTYNM "Name of county/parish"
AREACODE "Single Area Code for ZIP Code"
AREACODES "Multiple Area Codes for ZIP Code"
TIMEZONE "Time Zone for ZIP Code"
GMTOFFSET "Diff (hrs) between GMT and time zone for ZIP Code"
DST "ZIP Code obeys Daylight Savings: Y-Yes N-No"
PONAME "USPS Post Office Name: same as City"
ALIAS_CITY "Alternate names of city separated by ||"
ALIAS_CITYN "Local - alternate names of city separated by ||"
SOURCE "ZIP Code Source File (SAS release of ZIP Code file)"
.

.

SPSS input statement lines

GET DATA
/TYPE=TXT
/FILE="c: emp.csv"
/DELCASE=LINE
/DELIMITERS=","
/ARRANGEMENT=DELIMITED
/FIRSTCASE=2
/IMPORTCASE=ALL
/VARIABLES
SOURCE a12
ZIP5 a5
FIPS a5
MSA a4
STATECODE a2
COUNTY a3
CITY2 a64
STATENAME2 a64
Y f15.0
X f15.0
ZIP_CLASS a1
CITY a35
STATE a2
STATENAME a25
COUNTYNM a25
AREACODE f15.0
AREACODES a12
TIMEZONE a9
GMTOFFSET f15.0
DST a1
PONAME a35
cityNameForDisplay a255
ALIAS_CITY a65535
ALIAS_CITYN a65535
. CACHE.
EXECUTE.
DATASET NAME temp WINDOW=FRONT.
.