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: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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
  • 1394 views
  • 0 likes
  • 2 in conversation