I'm trying create custom maps to Russia in Visual Analytics.
So, I've faced with a trouble of "separated region".
You can see a visualization of this problem by using Dal'nevostochnyy (DVFO)
region from MAPSGFK
library.
I tried to fix the scatter by this code:
data mps.vaasia1;
set mps.vaasia1;
if LONG < 0 and isoalpha2="RU" then long=long+360 ;
run;
And so I get this result (on picture imaged region Chukotka
, but it dosen't matter):
It's better then previous situation, but it's look like crutch.
I've try to combine this two polygons by using GREMOVE
(also add paramether FUZZ
), but result was as the same.
UPD:
I use this code to get coordinates:
data ch;
set mapsgfk.Russia;
where id ="RU-77" ;
if LONG LE 0 then long=long+360 ;
x=long ;
y = lat;
run;
So my question is:
How can I delete space between two separated regions?
Thx for your answers / comments.