Skip to content

newbie questions

6 messages · tom sgouros, Alex Mandel, Dan Putler

#
Tom,

Er, what exactly is your data? Do you have data that is linked to zip
codes and you want to do a "thematic" (choropleth) map of the data? Do
you have point data (say a lat/lon values), and want to plot the points?
Given what you've said, hard to figure out how to get you going in the
right direction.

Dan
On Sun, 2009-11-15 at 22:30 -0500, tom sgouros wrote:
#
Dan Putler <dan.putler at sauder.ubc.ca> wrote:

            
The data is mostly from past elections, so it's vote totals or
demographic data within some district.

Google tells me that choropleth is the name of precisely the kind of
thing I'm trying to make, thank you for expanding my vocabulary today.

Is there a name for the bar graph kind of thing?  (Here's an example:
http://www.turbosquid.com/FullPreview/Index.cfm/ID/346428 )

Thank you,

 -tom

  
    
#
tom sgouros <tomfool at as220.org> wrote:

            
I should have also said that I have both SHP files and E00 files to
describe the boundaries of the districts, but have no feeling about
which I should prefer or why and I wonder if anyone else does.  The SHP
files come with an XML description that seems not to be used by grass.
The E00 files maybe come with a description of their own projection,
while I had to identify a projection to specify it to grass, but
otherwise I don't know why one would be better or worse.

Thanks,

 -tom

  
    
#
tom sgouros wrote:
It sounds like what you need is a base map of districts from whatever
governmental agency has jurisdiction(Fed, State or County). It will
likely come as a shapefile or other similar format as polygons. You will
then Join your election data to this spatial data set based on some sort
of shared ID key that exists in both.

This could be done easily in either QGIS or R. I would leave GRASS out
of the discussion for now if we're just talking about making a map and
bring it back in if you start wanting to analyze the spatial
relationship between your data and other data sets.

FYI, there are both R and GRASS plugins for QGIS which I think is a good
tool for getting started with GIS.

Most people would call that link you sent a 3D visualization, there are
lots of ways to do that in GRASS(nviz), R and even Google Earth (fairly
common).

Alex
#
I'd go with the shapefiles, the E00 files are ArcInfo export format
files, and it is very likely you would convert to shapefile sets along
the way.

Dan
On Sun, 2009-11-15 at 23:27 -0500, tom sgouros wrote:
#
tom sgouros wrote:
For your purposes the shp will be easier to work with, the E00 file
contains the same information and something called Topology which is
irrelevant to this particular use. The XML file is metadata, none of the
software involved here directly uses it, the projection information is
stored in the .prj file for shapefiles.
SHP is more widely recognized by software and in most cases E00 just
gets converted to it at some point anyways.

Alex