November 18, 1992 1990 Census of Population and Housing Summary Tape File 3A ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ³ Using The CD-ROM ³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ Some STF 3A files require more than one CD-ROM. When a State is split, each CD-ROM contains small area summaries such as census tracts and block groups for selected counties. Each of the CD-ROMs for a State contains all summaries for places, counties, and higher levels of census geography. In other words, summary levels 060, 070, 080, 091, 140, and 150 would be present only for the specific counties listed in the CD-ROM title. All other summaries would be present. The 1990 Summary Tape File 3A software runs on personal computers with 640K RAM operating under MS-DOS 3.0 or higher. There are no special display requirements. The CD-ROM is in the ISO 9660 format which requires the use of Microsoft CD-ROM Extensions Version 2.0 or higher. The software displays some brief statistical definitions through the glossary function. Refer to Appendix B (\DOCUMENT\APPEND_B.ASC) of the technical documentation for the complete text. For direct access to the data files, one of the many software packages which recognize the dBASE III Plus (.DBF) format will be very useful. Users of other types of systems, such as the Apple Macintosh, have access to the files through support for ISO 9660 CD-ROMs. Please note that the retrieval software will only run in the MS-DOS environment. ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ³ Starting The Software ³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ Type GO at the DOS prompt and ENTER. Example: L:\>go ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ³ Some Changes ³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ Summary Tape File 3A CD-ROMs with issue dates of October 1992 and later have updated software which requires less memory. This has been accomplished through the use of Clipper 5.01. The CopyFile function now provides the option for direct output to files in the WK1 spreadsheet format. There are also corrections in the TABLES.DBF template for population imputation tables (P128-P170). In general, the first line in each of these tables was incorrectly listed as filler. The last line is now correctly listed as filler. The exceptions are tables P129, P167, P168, P169 which have no filler, and tables P144, P156, P157, P158, P161, and P162. In this latter group, the next-to-last line is filler. Format of population imputation tables prior to October 1992: ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿ ³ IMPUTATION OF POPULATION ITEMS ³ ³ Universe: Persons ³ ³ Filler......................... 2,469,715³ ³ No items allocated........... 2,396,977³ ³ One or more items allocated.. 0³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ Format of population imputation tables beginning October 1992: ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ¿ ³ IMPUTATION OF POPULATION ITEMS ³ ³ Universe: Persons ³ ³ No items allocated........... 2,469,715³ ³ One or more items allocated.. 2,396,977³ ³ Filler......................... 0³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ³ Contents Of The CD-ROM ³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ Volume in drive is CD90_3A_nn DOCUMENT Directory for documentation files. These are ASCII text files which contain complete technical documentation for the data. See \DOCUMENT\HOWTOUSE.ASC for information on the contents of the files. GO.BAT Batch file to execute data retrieval software. STF3A.EXE Data retrieval software. STF3??ss.DBF Statistical database files for each State. is the State abbreviation. There are 35 files for each State numbered STF300ss.DBF through STF334ss.DBF >>Reference Files<< STF3STRU.DBF This file describes the structure of the first 67 fields in the statistical database file. These are the identification fields. TABLES.DBF This file describes the numeric data tables. CNAMESss.DBF This file lists county names and FIPS codes for State . >>Index Files<< CNAMESss.NDX This is a dBASE III index file for CNAMESss.DBF. Key field is ANPSADPI. STF3AMss.NDX This is a dBASE III index file for STF300ss.DBF. Key fields are SUMLEV + CNTY + COUSUBFP + PLACEFP + TRACTBNA + BLCKGR. STF3APss.NDX This is a dBASE III index file for STF300ss.DBF. Key fields are SUMLEV + PLACEFP. STF3ATss.NDX This is a dBASE III index file for STF300ss.DBF. Key fields are SUMLEV + CNTY + TRACTBNA + BLCKGR. STF3ALss.NDX This is a dBASE III index file for STF300ss.DBF. Key fields are SUMLEV + left(ANPSADPI,1). This index is UNIQUE. TABLES.NDX This is a dBASE III index file for TABLES.DBF. Key fields are TABLE + FIELD. ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ³ Converting dBASE Files ³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ '********************************************** '*** This is a Microsoft BASIC program that *** '*** converts a dBASE (.DBF) file to ASCII *** '*** (.TXT). *** '********************************************** CLS INPUT "Database file to convert -> ", InFile$ INPUT " Text file -> ", OuFile$ OPEN InFile$ FOR BINARY AS #1 OPEN OuFile$ FOR OUTPUT AS #2 TYPE HdrStru Filler AS STRING * 4 RecCount AS LONG HdrBytes AS INTEGER RecBytes AS INTEGER END TYPE DIM Hdr AS HdrStru GET #1, , Hdr SEEK #1, Hdr.HdrBytes + 1 RecCntr = 0 DO Rec$ = STRING$(Hdr.RecBytes, " ") GET #1, , Rec$ PRINT #2, MID$(Rec$, 2) RecCntr = RecCntr + 1 IF RecCntr = Hdr.RecCount THEN EXIT DO LOOP CLOSE #1, #2 ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ