GIS – Geographic Information Systems – is a massive field; we’re just scratching the surface here.
But it’s possible to actually create real maps that no one has made before pretty easily by drawing together elements from various map layers online. This does not involve programming, but does require understanding some high-level concepts that can be tricky to grasp at first.
Here are some of the most important features
A GIS map is built up out of layers. In the online version, you can turn these on and off; in the final representation, the way your maps appear will depend on the layers that are visible.
Layers are an abstraction of teh actual file formats that you might use. In practice, they can be populated from existing data.
Shapefiles the general descriptive term used for vector data; originally an internal standard for ARCgis, but now the general interchange format for geographic data.
Right click on a layer to examine it. The two most important options are:
Raster data is image map data: it represents points as colors generally.
Raster files usually have an image suffix (often .tif
or .tiff
).
If you georectify a historical map, it will
They are the equivalent of a text file that has been scanned, but that hasn’t had OCR performed on it.
But sometimes raster data is actual raw data on its own. Imagine, for example, that you take a series of estimates of the altitude for every point in a country. The most natural way to represent this is as a single value for each point on the grid. You can think of this as an image, but it also directly encodes the raw data.
Vector files, on the other hand, are the geospatial equivalent of text that has been OCR’ed. They represent space as a series of lines that can be manipulated. We are looking in class at street data, for example, where each street is represented as a single line. (In a raster dataset, a street might be several grey bands across.
Vector data may not be as pretty as raster data in many cases, but it makes it possible to represent things, not just space abstractly. A street can have a name; a building can have
There are three basic types of vector layers:
The last, and by far the most frustrating thing you will encounter, are various different projections used to describe the shape of the earth.
There is no right way to represent a spherical planet on a flat page. So each of the files that you use may have a different base projection built in. These have funny names assigned by world geographical bodies, like “WGS84.” Internally in QGIS (and in a variety of programs) a projection is represented as a “Coordinate Reference System,” or CRS.1
If you encounter a problem where things aren’t appearing, odds are that it has to do with broken CRS interpretation.
Here’s what do when this happens.
Project -> Project Properties -> CRS
in the menu. (This is also accessible by clicking the coordinate system in the lower right hand corner of the map view). Make sure the box that says “Enable ‘on the fly’ CRS transformation” is checked.These projections can all be combined into a single system.
The industry standard is ArcGIS, made by the company ESRI. It’s expensive! That’s about the only downside. If you take a GIS class, they often use Arc.
QGIS is free, and not all that bad. It’s continually getting better, in fact; and you should be completely able We’re using it so you get used to something you’ll be able to keep using without a site license.
As you saw, installation is a pain.
There are a variety of web mapping technologies that are taking different areas of the humanities and journalism by storm. Hypercities builds on some of the Google platform; Stanford/Orbis builds on D3.js, which is hard to use (requires coding in Javascript) but extremely powerful for interactive maps. It’s what, most notably, any map you’ve seen on the New York Times in the last few years uses.
CartoDB is an online platform that allows relatively easy integration of datasets with a detailed base map of the entire world. For interactive online applications, it can be much easier to set up.
Georectification is the process of warping a map so that it can be used
Some examples of various sorts:
The process of matching places in English (or Latin, or whatever) to latitude-longitude coordinates you can place on a map.
Example: Mitch Fraas and Ben Schmidt, Mapping the State of the Union
Technically, a CRS is not exactly the same thing as a projection; a projection just tells how to represent the sphere on a plane, while a CRS includes a lot of other information, like units of measurement (some systems use meters from a fixed point; others use latitude-or-longitude points; others use miles; and so forth).↩