Dear all,
I need some help with using spmap (am new to using GIS with Stata). I have a polygon map where I have an attribute that I could like to display using sequential colors. This works based well:
spmap att1 using "$path/Maps/coorddta", ///
id(mapid) fcolor(Blues) ///
title("Title") ///
legend(stack rows(1)) ndfcolor(black) ndo(black) ///
clmethod(custom) clbreaks(0 1 4 14 24)
Some of the polygons on the map are forests (which I could like to display in green) and some others are mountains (which I could like to display in brown). I am not sure how to combine the sequential Blues with the categorical green and brown. I tried using two different attribute variables but it looks like spmap only accepts one attribute. I coded the polygons with forests and mountains as 98 and 99 for the att1 variable but the colors used are based on the Blues sequential shade.
I will appreciate any help. Thanks!
I need some help with using spmap (am new to using GIS with Stata). I have a polygon map where I have an attribute that I could like to display using sequential colors. This works based well:
spmap att1 using "$path/Maps/coorddta", ///
id(mapid) fcolor(Blues) ///
title("Title") ///
legend(stack rows(1)) ndfcolor(black) ndo(black) ///
clmethod(custom) clbreaks(0 1 4 14 24)
Some of the polygons on the map are forests (which I could like to display in green) and some others are mountains (which I could like to display in brown). I am not sure how to combine the sequential Blues with the categorical green and brown. I tried using two different attribute variables but it looks like spmap only accepts one attribute. I coded the polygons with forests and mountains as 98 and 99 for the att1 variable but the colors used are based on the Blues sequential shade.
I will appreciate any help. Thanks!
Comment