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.
What version of SAS Visual Analytics are you using?
You might need to add Custom Polygon data for Geographic Maps.
These blogs gives some idea how to approach.
https://blogs.sas.com/content/sgf/2018/02/07/creating-custom-regional-map-sas-visual-analytics-7-4/
Hope this helps
Thank you sir (SuryaKiran) 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.
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.
SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!
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.