[PyTopo for Linux]

pytopo: Topographic Maps for Linux

PyTopo is a Python-gtk script which interprets local map data (for instance, from a Topo! data CD), and displays it in an interactive viewer, where you can scroll to adjacent maps, switch between resolutions, or produce a map image for printing or editing.

Why does PyTopo exist? There were several existing Linux mapping applications which take data from online web sites or roads databases, and others which take GPS data and correlate it with maps; but I couldn't find an app which would display data for any location, without requiring a GPS, using local image map sources.

The current version of PyTopo is 0.6.

PyTopo 0.6 fixes a memory leak from PyTopo 0.5.
PyTopo starting with 0.5 can read several other map formats, can display to a window of arbitrary size, and has a few other bug fixes (as well as much cleaner, more maintainable code). It does require that you change your ~/.pytopo file slightly if you were using a version prior to 0.5: see the comments at the beginning of the script for examples, or check out my preliminary documentation. Please report any bugs you find!

Download PyTopo 0.6.

Using PyTopo

Begin by creating a file named .pytopo in your home directory, in which you define a list of named coordinates, and specify some other parameters such as location of the map data and preferred window size. Read the comments at the beginning of the pytopo script for samples of the .pytopo file.

Key bindings

Left, Right,
Up, Down
Scroll the map in the indicated direction.
+/=, - Zoom in to the 7.5 minute series, or out to the 15 minute series. (Zooming isn't supported in other map formats yet.)
s Save the current map to a file under $HOME/Topo
Space Print (to standard output) the current coordinates of map center.

Clicking in the map displays the coordinates of where you clicked, as well as the distance and bearing from the last clicked point.

Getting Map Data

PyTopo assumes that you already have maps locally, on disk or CD, in a supported image format, named according to the Topo! naming conventions. (PyTopo 0.5 adds support for other naming conventions as well.)

The Topo! local area and specific park map packages sold in camping/hiking stores (sometimes under the aegis of National Geographic) are reasonably priced as a source of map data. They come with Windows software, but Linux users can ignore the software and use the data files, which are standard GIF, named in a fairly straightforward way. They're a good source of US map data.

Caution: the Topo! Back Roads Explorer and the statewide explorer collections are not in this friendly format. They use large data files in a proprietary ".tpq" format. Tom Trebisky has analyzed the format and has written an extractor, and he also has a C GTK viewer for this format. (Eventually I hope to integrate direct support for them into pytopo as well.)

Just to be clear: I am not distributing map data.

Making Your Own Map Collections

You can buy map bits directly from the USGS, but they have a hefty setup fee so it's not cost effective unless you're buying quite a lot.

For some areas, you can download topo maps; for instance, for California you can get maps in TIFF format from the California Spatial Information Library. You still have to split up the maps into maplets, though; if you have ImageMagick, you can use a command like

convert input-map.jpg -rotate 90 -crop 262x328 -trim -repage +0+0 out-map%02d.jpg
A map split this way can be read with PyTopo 0.5 or later. Maps downloaded as PDF (such as USGS geologic maps) must be converted to a raster format before splitting, using a command such as
gs -sDEVICE=jpeg -r300 -sOutputFile=output-map.jpg input-map.pdf

Non-interactive mapping scripts

PyTopo users may be interested in two helper scripts, which use the montage program from ImageMagick to coalesce the small Topo! maplets into a larger map which can be manipulated or printed with a program such as GIMP. These are straight command-line programs, with no UI, and do not require pygtk.

Is it Only For Linux?

PyTopo should run fine on any system which has Python, gtk, gdk-pixbuf, and PyGTK, assuming Python can understand "/" as a directory separator. This means OS X should be fine, but I'm not sure about Windows.

Coming Soon

(Stuff I want already, which should be easy to implement.)

Wishlist

(Stuff that would be nifty, but is either difficult, or requires additional map data that I'd have to pay for. If you want something on this list, bribing me with interesting map data would be an excellent approach.)

Change Log

0.6, October 12, 2007
Fix bad memory leak (will run much better on small-memory machines now).
Integrate Tom Trebisky's Topo2 format.
0.5, August 21, 2006
Formal 0.5 release: Fix a bug when specifying long/lat on the command line.
0.5b2, June 2, 2006
Fix "save as". Fix latitude reported when clicking.
0.5b1, April 16, 2006
Read more general map formats. Display to arbitrarily sized windows. Bug fixes. Code refactoring.
0.4, April 17, 2005
Calculate distance and bearing between clicks; assorted bug fixes.
0.3, April 13, 2005
Add 's' binding to save current map to a file (using montage from ImageMagick).
Better fix for expose handling.
0.2, April 8, 2005 Temporary fix for spurious expose problem (excessive CPU usage).
0.1, April 5, 2005
Coordinate handling routines mostly working. Store coordinates of center, not edge, so zoom works.

More Software
Shallowsky Home
mail me