BookmarkSubscribeRSS Feed
chaudharydeepak
Obsidian | Level 7

hello all

 

     I'm trying to make Geo Regional Map of India by drilling Delhi by its Districts and making the regional map by using latitude and longitude of the district.

 

example is attached below.

WhatsApp Image 2018-10-10 at 18.02.55.jpeg

3 REPLIES 3
chaudharydeepak
Obsidian | Level 7

Thank you sir () for your reply.

  I'm using  SAS Visulal Analytics 7.4.

and your reply was little helpful but not able to understand it fully.

Can you able to help me more in it.

SuryaKiran
Meteorite | Level 14

You can use this blog as reference, something similar like your requirement.

 

You may don't need to move the data point using PROC GREMOVE, there is already a required document for your need.

proc sql;
create table Delhi_Map_Data as
select a.ID as DISTRICT_ID,a.ID1 as STATE_ID,a.x,a.y,a.LONG,a.LAT,b.IDNAME as DISTRICT, b.ID1NAME as STATE, b.ISONAME as COUNTRY
	from mapsgfk.india a
	inner join mapsgfk.india_attr b
		on (a.id=b.id and a.id1=b.id1)
	Where id1name='DELHI';

quit;

Refer to the Admin document referred in my previous reply to learn more about the custom polygons. Unfortunately I don't have required access to test these.

Thanks,
Suryakiran

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

Tips for filtering data sources in SAS Visual Analytics

See how to use one filter for multiple data sources by mapping your data from SAS’ Alexandria McCall.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 1434 views
  • 0 likes
  • 2 in conversation