Visualising spatial data

http://www.scipy.org/Cookbook/Matplotlib/Maps?action=AttachFile&do=get&target=basemap3c.png

High level programming languages like e.g. Python, Matlab, R, IDL allow for the easy generation of maps by using specific modules. Alternatives to produce maps is special commerical or non-commercial software like e.g. ArcGIS, Generic mapping tool (GMT), ...

Map and projection basics

The Earth shape and it's approximation

How to do it in Python

There are different ways to generate maps with geographic information within Python. These are either based on the PyNGL (Gallery) or Basemap packages. PyNGL is very flexible to handle and allows for the generation of high quality maps. However, it takes a while to generate a nice looking map in PyNGL. If you just want to visualise your data, Basemap might be a very good alternative in many cases.

The Basemap way

The first step is the generation of an Basemap object which includes also the definition of the projection. Which projection to choose depends on your application. You might want to have a map with specific properties like e.g. equal area or equal angular and optimized for a specific region like e.g. the polar regions.

You can then draw pre-defined data or use your own data.

   1 from mpl_toolkits.basemap import Basemap
   2 import matplotlib.pyplot as plt
   3 import numpy as np
   4 
   5 #/// define a map projection ///
   6 map = Basemap(projection='ortho', lat_0 = 50, lon_0 = -100,
   7               resolution = 'l', area_thresh = 1000.)
   8 
   9 #to see a list of potential projections, type help(Basemap)
  10 #be aware that each projection has different types of parameters
  11 
  12 #... you like coastlines?
  13 map.drawcoastlines()
  14 
  15 #... and countries
  16 map.drawcountries()
  17 
  18 #... fill continents
  19 map.fillcontinents(color = 'coral')
  20 
  21 #... draw coordinates
  22 map.drawmeridians(np.arange(0, 360, 30))
  23 map.drawparallels(np.arange(-90, 90, 30))

You want to plot some point data?

   1 clf()
   2 map.bluemarble()
   3 
   4 # lat/lon coordinates of five cities.
   5 lats = [40.02, 32.73, 38.55, 48.25, 17.29]
   6 lons = [-105.16, -117.16, -77.00, -114.21, -88.10]
   7 cities=['Boulder, CO','San Diego, CA',
   8         'Washington, DC','Whitefish, MT','Belize City, Belize']
   9 # compute the native map projection coordinates for cities.
  10 x,y = map(lons,lats)
  11 # plot filled circles at the locations of the cities.
  12 map.plot(x,y,'ro')
  13 # plot the names of those five cities.
  14 for name,xpt,ypt in zip(cities,x,y):
  15     plt.text(xpt+50000,ypt+50000,name,color='white')

References:

LehreWiki: GenMaps (last edited 2014-01-10 15:00:43 by anonymous)