The data changes encompassed
in the GfK map data sets include various variables. The changes are
detailed in this section.
The
RESOLUTION variable
reduces the points for the display size of a map as indicated in the
following table:
RESOLUTION Variable Values
The traditional
STATE variable
is represented as
ID1 in
GfK map data sets such as
US_COUNTIES.
For example, a
STATE value
of
51 is represented by
ID1 as
84051.
ID1 concatenates
the country code with the state code.
The traditional
COUNTY variable
is represented as
ID in
GfK map data sets such as
US_COUNTIES.
For example, a
COUNTY value
of
15 is represented by
ID as
84051015.
ID concatenates
the country code, the state code, and the county code.
The X and Y variable
values in the GfK map data sets are always projected.
The LAT and LONG variable
values in the GfK map data sets are always unprojected degrees (not
radians).
The identification variables,
for example ID and ID1, are character instead of numeric in the GfK
map data sets.
GfK map data is provided
in UTF-8 Unicode encoding with the exception of the MAPSGFK.WORLD_CITIES
map data set.
GfK map data contained
in the map data sets are projected using appropriate projection methods.
For example, the data set MAPSGFK.US represents a relatively small
map area that is near neither pole. These factors make it possible
to project data without distortion using the Albers method. The
LABEL column
in each data set should identify the projection algorithm used for
the X and Y variables. Use the CONTENTS procedure to view columns
in a map data set. To view columns in the map data set named MAPSGFK.US,
run the following code:
proc contents data=mapsgfk.us;
run;