July 6, 1993 1990 Census of Population and Housing Summary Tape File 3B ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ³ Version 1.0 ³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ³ Starting The Software ³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ Type GO at the DOS prompt and ENTER. Example: L:\>go Note: Although there are county part records on the CD-ROM, the software only displays records for ZIP code totals. A discussion about these records can be found in the file, \DOCUMENT\S3BCDHOW.ASC. ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ³ Using The CD-ROM ³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ The 1990 Summary Tape File 3B software runs on personal computers with 640K RAM operating under MS-DOS 3.3 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. ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ³ Contents Of The CD-ROM ³ ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ Volume CD90_3B_01 - Summaries for ZIP codes starting with 0, 1, 2, & 3. Volume CD90_3B_02 - Summaries for ZIP codes starting with 4, 5, & 6. Volume CD90_3B_03 - Summaries for ZIP codes starting with 7, 8, & 9. 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. STF3B.EXE Data retrieval software (Version 1.0). STF3??.DBF Statistical database files for ZIP code areas. There are 35 files for each disc numbered STF300.DBF through STF334.DBF. >>Reference Files<< STF3STRU.DBF This file describes the structure of STF300. These are the geographic identification fields. TABLES.DBF This file describes the numeric data tables. STF3ABM.NDX This is a dBASE III index file for STF300.DBF. Key field is SAC1 (ZIP code). TABLES.NDX This is a dBASE III index file for TABLES.DBF. Key fields are TABLE + FIELD. REF Directory for ZIP code reference database and index files. >>database Files<< ZIP_ss.DBF Reference database files for each state and D.C. containing zipcode, place FIPs codes, and areaname. >>Index Files<< ZIPss_N.NDX This is a dBASE III index file for ZIP_ss.DBF. Key field is ANPSADPI (areaname). >>Index Files<< ZIPss_Z.NDX This is a dBASE III index file for ZIP_ss.DBF. Key field is SAC1 (ZIP code). ÚÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÂÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄ ³ 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 ÀÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÄÙ