Chapter Contents |
Previous |
Next |
Using Spatial Data with SAS/GIS Software |
There are also several ways to assign a fileref, including the FILENAME statement, the FILENAME function in SCL, and host-specific file allocation mechanisms. However, all examples in this section use a FILENAME statement.
Specifying the Input Parameters |
You must define a macro variable named IMP_TYPE to indicate which type of data you are going to import. This parameter is required. IMP_TYPE Values and Descriptions contains valid values for IMP_TYPE.
Value | Description |
---|---|
TIGER | Topologically Integrated Geographic Encoding and Referencing (TIGER) files from the U.S. Census Bureau and commercial data vendors |
DYNAMAP | Dynamap files from Geographic Data Technology, Inc. (GDT) |
DLG | Digital Line Graph (DLG) files from the U.S. Geological Survey and commercial data vendors |
DXF | Drawing Interchange Files (DXF) produced by a variety of mapping and CAD software packages |
ARC | Uncompressed ARC/INFO E00 transport files from Environmental Systems Research Institute, Inc. (ESRI) |
SASGRAPH | SAS/GRAPH map data set format |
GENLINE | Generic Line format SAS data set |
GENPOINT | Generic Point format SAS data set |
GENPOLY | Generic Polygon format SAS data set |
MAPINFO | MapInfo Interchange format files from MapInfo Corporation |
For example, to import a TIGER file, submit the following statement:
%let IMP_TYPE=TIGER;
For the Generic import types and the SASGRAPH import type, you accomplish this by assigning the name of a SAS data set to the INFILE macro variable. You can specify a one-level or a two-level name. One-level names are assumed to be located in the WORK library. For example:
/* The CUBA data set in the MAPS library. */ %let INFILE=MAPS.CUBA;or
/* The NC data set in the WORK library. */ %let INFILE=NC;
For all other import types, you must allocate filerefs to point to the files that you want to import. See File Reference Table for additional information about the filerefs for each import type. The following list contains the import types and the filerefs that you are required to assign for them.
Note:
NIDVARS
and IDVARn macro variables are for SASGRAPH and Generic Import
Types only.
For SASGRAPH and all of the Generic import types, you must provide additional information regarding variables in your data set.
For SASGRAPH and the Generic Polygon import types, you must also identify the number and names of the variables that uniquely identify unit areas in the map, in hierarchical order. The NIDVARS macro variable must be set to the number of identification variables, and the IDVARn macro variables must specify, in order, the names of the identification variables. For example, for a SASGRAPH import of the MAPS.USCOUNTY data set (which contains State and County boundaries), you specify:
%let IMP_TYPE=SASGRAPH; %let INFILE=MAPS.USCOUNTY; %let NIDVARS=2; %let IDVAR1=STATE; %let IDVAR2=COUNTY;
The value of n in IDVARn ranges from 1 to the value that is specified for the NIDVARS macro variable.
For the Generic Line and the Generic Point import types, you can identify a single variable that will be used to generate layer definitions. You set NIDVARS=1 and IDVAR1=layer variable. A layer is created for each unique value of the specified layer variable. If you specify more than 16 layers, only the first 16 layers are added to the map. If you want all features to be added to a single layer, specify NIDVARS=0. For example, to add all points from a data set to a single layer, specify
%let NIDVARS=0;
However, if your points represent stores and you have a SIZE variable that indicates if the store is small, medium, or large, you can specify the following to create three separate layers, one for each value of SIZE:
%let NIDVARS=1; %let IDVAR1=SIZE;
Specifying the Output Parameters |
Enter the following command from a DMS command line:
AF C=SASHELP.GISIMP.BATCH.SCL
Submit a DM statement that will issue the AF command:
DM 'AF C=SASHELP.GISIMP.BATCH.SCL';
Use the CALL DISPLAY routine in SCL:
CALL DISPLAY('SASHELP.GISIMP.BATCH.SCL');
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.