The traditional map data sets
that contain X and Y variables (and no LONG and LAT variables), are
usually projected maps. However, there are a few traditional map data
sets for the US and Canada that contain X and Y values that are unprojected
longitude and latitude. In this case, you need to use the GPROJECT
procedure to project the map.
(SeeGPROJECT Procedure).
Note: You can determine whether
a SAS traditional map data set is projected or unprojected in one
of two ways. You can look at the description of each variable that
is displayed when you use the CONTENTS procedure. You can also browse
the MAPS.METAMAPS data set. An example of using the CONTENTS procedure
follows:
proc contents data=maps.chile; /*<libref.datatsetname> */
run;