Re: CountryData Shape and Graphical objects
- To: mathgroup at smc.vnet.net
- Subject: [mg92722] Re: CountryData Shape and Graphical objects
- From: "sjoerd.c.devries at gmail.com" <sjoerd.c.devries at gmail.com>
- Date: Sat, 11 Oct 2008 06:45:47 -0400 (EDT)
- References: <gcn47g$72u$1@smc.vnet.net>
Several things are wrong here: 1 The CountryData function generates a Graphics structure. That itself should not be put inside another Graphics as you do. 2. The range in the Line function is much too large Try something like: Show[ CountryData["World", {"Shape", {"LambertAzimuthal", {-30, 0}}}], Graphics[ { {Red, Line[{{0, 0}, {1, 1}}]} }] ]