Hi everybody,
I am having some trouble getting my map out of stata.
I already obtained the right datasets. The trouble starts when I try to add points.
My simplified code looks like this:
- use "NL-attr.dta"
- spmap using "NL-coord.dta", id(NLid) fcolor(eggshell) ocolor(black)
I get a nice map of the Netherlands, so now I try to add some points to the map:
- spmap using "NL-coord.dta", id(NLid) fcolor(eggshell) ocolor(black) point(data("Pointscoord.dta") xcoord(xcoord) ycoord(ycoord) fcolor(red))
Now I only see the points, but the map of the Netherlands is gone.
Does anyone know what I am doing wrong?
I have added to two maps, maybe it helps.
Thanks and kind regards
I am having some trouble getting my map out of stata.
I already obtained the right datasets. The trouble starts when I try to add points.
My simplified code looks like this:
- use "NL-attr.dta"
- spmap using "NL-coord.dta", id(NLid) fcolor(eggshell) ocolor(black)
I get a nice map of the Netherlands, so now I try to add some points to the map:
- spmap using "NL-coord.dta", id(NLid) fcolor(eggshell) ocolor(black) point(data("Pointscoord.dta") xcoord(xcoord) ycoord(ycoord) fcolor(red))
Now I only see the points, but the map of the Netherlands is gone.
Does anyone know what I am doing wrong?
I have added to two maps, maybe it helps.
Thanks and kind regards
Comment