SAS PROGRAMMING HANDOUT #31 This program uses the dataset #2 on the web page to draw the map of china. This program uses the dataset #3 on the web page to draw the map of USA. It seems as though the computer lab computers do not have the map data sets on them. Please see me for any other country. DATA CHINA2; INFILE 'D:\JIMSAS\DATA2.TXT'; INPUT @1 ID @5 SEGMENT @9 LAKE @20 X @35 Y @50 LONG @65 LAT; PROC MEANS; RUN; PROC GMAP DATA=CHINA2 MAP=CHINA2; CHORO SEGMENT; ID ID; RUN; DATA US2; INFILE 'D:\JIMSAS\DATA3.TXT'; INPUT @1 SEGMENT @5 STATE @20 X @35 Y ; PROC GMAP DATA=US2 MAP=US2; CHORO SEGMENT; ID STATE; RUN;