Displaying 1 result from an estimated 1 matches for "territor".
Did you mean:
territory
2004 Nov 18
4
adjusting the map of France to 1830
...plit into
Hauts-de-Seine (92), Seine-Saint-Denis (93) et Val-de-Marne (94)*/
else if id in (92, 93, 94) then dept=75;
/* departments not part of France in 1830 */
else if id in (
6, /* Alpes-Maritimes */
73,74, /* Savoie, Haute-Savoie */
90) /* Territore-de-Belfort */
then delete;
else dept=id;
run;
*-- remove internal boundaries based on merged DEPT;
proc sort data=gfrtemp;
by dept;
proc gremove data=gfrtemp out=gfrance;
by dept;
id id;
run;
--
Michael Friendly Email: friendly at yor...